NixOS-Config/hosts/envy/default.nix

21 lines
337 B
Nix
Raw Normal View History

2024-12-16 12:11:12 -05:00
{ ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./users
../../modules/system
];
2024-12-18 23:06:57 -05:00
networking.hostName = "envy";
2024-12-16 12:11:12 -05:00
networking.wireguard.interfaces.wgc.ips = [ "10.100.0.25/24" ];
2024-12-18 23:06:57 -05:00
system = {
lanzaboote.enable = true;
wireguard.client.enable = true;
stateVersion = "24.11";
};
2024-12-16 12:11:12 -05:00
}