nix/hosts/server/default.nix
2024-10-08 22:43:41 +02:00

13 lines
277 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/apps
../../modules/system
];
}