nixos-config/hosts/envy/default.nix

27 lines
434 B
Nix

{ ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./users
../../modules/system
];
networking = {
hostName = "envy";
hostId = "db2e5735";
wg-quick.interfaces.wgc.address = [ "10.100.0.25/24" ];
};
system = {
lanzaboote.enable = true;
wireguard.client.enable = true;
stateVersion = "24.11";
};
# Special options
virtualisation.vmware.host.enable = true;
}