Add zfs support to redmond, update to wg-quick
This commit is contained in:
parent
06e1964f7d
commit
d183a4dc32
5 changed files with 23 additions and 11 deletions
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue