nixos-config/hosts/envy/default.nix

25 lines
397 B
Nix
Raw Normal View History

2024-12-16 12:11:12 -05:00
{ ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./users
../../modules/system
];
networking = {
hostName = "envy";
2024-12-22 21:01:01 -05:00
hostId = "db2e5735";
wg-quick.interfaces.wgc.address = [ "10.100.0.25/24" ];
};
2024-12-16 12:11:12 -05:00
2024-12-18 23:06:57 -05:00
system = {
lanzaboote.enable = true;
wireguard.client.enable = true;
2025-01-10 13:36:38 -05:00
libvirtd.enable = true;
2024-12-18 23:06:57 -05:00
stateVersion = "24.11";
};
2024-12-16 12:11:12 -05:00
}