Files
nixos-config/nixos-configurations/laptop/default.nix

25 lines
495 B
Nix
Raw Normal View History

{ config, pkgs, inputs, ... }:
{
imports = [
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480
./hardware-configuration.nix
2023-07-02 00:18:17 +02:00
../shared-desktop.nix
../shared.nix
];
networking.hostName = "laptop";
2023-05-11 15:36:33 +02:00
home-manager.users.thiloho = { pkgs, ... }: {
2024-04-04 23:35:17 +02:00
programs.git.signing.key = "BFD8F6A55B1E4F11";
2023-10-16 16:10:27 +02:00
home = {
2024-01-04 14:07:22 +01:00
packages = with pkgs;
[
# ciscoPacketTracer8
];
2023-10-16 16:10:27 +02:00
stateVersion = "23.05";
};
};
2023-07-02 00:18:17 +02:00
system.stateVersion = "23.05";
}