nix/hosts/server/default.nix
2024-10-10 11:20:03 +02:00

13 lines
281 B
Nix

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