mirror of
https://github.com/thiloho/nixos-config.git
synced 2025-11-22 19:41:35 +01:00
25 lines
495 B
Nix
25 lines
495 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480
|
|
./hardware-configuration.nix
|
|
../shared-desktop.nix
|
|
../shared.nix
|
|
];
|
|
|
|
networking.hostName = "laptop";
|
|
|
|
home-manager.users.thiloho = { pkgs, ... }: {
|
|
programs.git.signing.key = "1142F33FFA8ADAAC";
|
|
home = {
|
|
packages = with pkgs;
|
|
[
|
|
# ciscoPacketTracer8
|
|
];
|
|
stateVersion = "23.05";
|
|
};
|
|
};
|
|
system.stateVersion = "23.05";
|
|
}
|