nix/hosts/server/default.nix
2024-10-14 16:34:45 +02:00

13 lines
243 B
Nix

{
networking.hostName = "server";
services.logind.lidSwitch = "ignore";
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
imports = [
./hardware.nix
../../modules/programs
../../modules/system
];
}