Add zfs support to redmond, update to wg-quick

This commit is contained in:
Jimbo 2024-12-22 17:26:45 -05:00
parent 06e1964f7d
commit d183a4dc32
5 changed files with 23 additions and 11 deletions

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ config, lib, ... }:
{
imports = [
./boot
@ -8,10 +8,17 @@
../../modules/system
];
system.lanzaboote.enable = true;
networking = {
hostName = "redmond";
hostId = "ae713850";
wg-quick.interfaces.wgc.address = [ "10.100.0.23/24" ];
};
system.wireguard.client.enable = true;
networking.wireguard.interfaces.wgc.ips = [ "10.100.0.23/24" ];
system = {
lanzaboote.enable = true;
wireguard.client.enable = true;
stateVersion = "24.05";
};
networking.hostName = "redmond";
environment.sessionVariables.WLR_RENDERER = lib.mkForce "gles2";
}