nix/hosts/server/default.nix

20 lines
472 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-23 21:31:27 +02:00
../../modules/secrets
2024-10-19 23:40:57 +02:00
../../modules/services
2024-10-20 00:41:52 +02:00
../../modules/services/invidious
../../modules/services/forgejo
2024-10-23 21:31:27 +02:00
../../modules/services/syncthing
2024-10-24 14:23:30 +02:00
../../modules/services/immich
2024-11-03 12:33:02 +01:00
../../modules/services/nginx
2024-10-08 22:43:41 +02:00
];
}