Files
nixos-config/nixos-configurations/laptop/default.nix
2024-04-04 23:35:17 +02:00

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 = "BFD8F6A55B1E4F11";
home = {
packages = with pkgs;
[
# ciscoPacketTracer8
];
stateVersion = "23.05";
};
};
system.stateVersion = "23.05";
}