nix/hosts/server/default.nix

14 lines
270 B
Nix
Raw Normal View History

2024-10-08 22:43:41 +02:00
{
networking.hostName = "server";
services.logind.lidSwitch = "ignore";
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
2024-10-14 16:34:45 +02:00
2024-10-08 22:43:41 +02:00
imports = [
./hardware.nix
2024-10-10 11:20:03 +02:00
../../modules/programs
2024-10-08 22:43:41 +02:00
../../modules/system
2024-10-19 23:40:57 +02:00
../../modules/services
2024-10-08 22:43:41 +02:00
];
}