nixos-config/hosts/lacros/default.nix
2025-01-31 22:44:14 -05:00

26 lines
426 B
Nix

{ ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./users
../../modules/system
];
networking = {
hostName = "lacros";
hostId = "eb3a2dd3";
wg-quick.interfaces.wgc.address = [ "10.100.0.26/24" ];
};
system = {
desktop.enable = true;
lanzaboote.enable = true;
wireguard.client.enable = true;
libvirtd.enable = true;
stateVersion = "24.11";
};
}