nix-server/hosts/aratta/default.nix

24 lines
292 B
Nix
Raw Normal View History

2024-09-19 12:40:19 +00:00
{
config,
pkgs,
lib,
...
}:
{
networking.hostName = "aratta";
imports = [
./hardware.nix
../../modules/server.nix
../../modules/users.nix
2024-09-19 14:32:54 +00:00
../../modules/bind.nix
2024-09-19 12:40:19 +00:00
../../users/root.nix
../../users/hackerncoder.nix
];
system.stateVersion = "24.05";
}