nixos-config/hosts/prophet/default.nix

23 lines
344 B
Nix

{ modulesPath, ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./services
./user
../../modules/system
(modulesPath + "/profiles/headless.nix")
];
networking = {
hostName = "prophet";
hostId = "97a21a38";
};
system = {
server.enable = true;
stateVersion = "24.05";
};
}