nix-server/hosts/aratta/default.nix

23 lines
265 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
../../users/root.nix
../../users/hackerncoder.nix
];
system.stateVersion = "24.05";
}