nixos-config/hosts/midas/default.nix
2025-04-16 22:14:31 -04:00

24 lines
357 B
Nix

{ modulesPath, ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./network
./services
./users
../../modules/system
(modulesPath + "/profiles/headless.nix")
];
networking = {
hostName = "midas";
hostId = "38ba3f57";
};
system = {
server.enable = true;
stateVersion = "24.11";
};
}