31 lines
543 B
Nix
31 lines
543 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;
|
|
environment.persistence."/persist".directories = [
|
|
"/home/jimbo/.vmware"
|
|
"/home/jimbo/vmware"
|
|
];
|
|
}
|