nixos-config/hosts/rubble/default.nix
2025-02-27 11:42:57 -05:00

21 lines
307 B
Nix

{ ... }:
{
imports = [
./disko
./hardware
./users
../../modules/system
];
networking = {
hostName = "rubble";
hostId = "3d16423a";
};
system = {
desktop.enable = true;
extlinux.enable = true;
wireguard.client.enable = true;
stateVersion = "24.11";
};
}