nix/hosts/laptop/default.nix

17 lines
268 B
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{
2024-08-21 09:02:49 +02:00
inputs,
pkgs,
...
}: {
2024-06-05 20:52:52 +02:00
networking.hostName = "laptop";
networking.networkmanager.enable = true;
2024-08-21 09:02:49 +02:00
boot.loader.systemd-boot.enable = true;
2024-06-05 20:52:52 +02:00
imports = [
2024-07-03 16:00:19 +02:00
../../modules
2024-06-05 20:52:52 +02:00
./hardware.nix
2024-08-20 21:45:58 +02:00
./led.nix
2024-06-05 20:52:52 +02:00
inputs.home-manager.nixosModules.default
];
}