nixos-config/hosts/envy/default.nix
2024-12-22 21:01:01 -05:00

24 lines
369 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";
};
}