1
0
Fork 0
forked from Bun/nixos-config
nixos-config/hosts/prophet/default.nix

21 lines
319 B
Nix

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