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

@ -9,8 +9,10 @@
../../modules/system
];
networking.hostName = "envy";
networking.wg-quick.interfaces.wgc.address = [ "10.100.0.25/24" ];
networking = {
hostName = "envy";
wg-quick.interfaces.wgc.address = [ "10.100.0.25/24" ];
};
system = {
lanzaboote.enable = true;

View file

@ -1,6 +1,8 @@
# nixos-generate-config --root ./ --no-filesystems
{ config, lib, ... }:
{ config, lib, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [ "xhci_pci" "sr_mod" ];
boot.initrd.kernelModules = [ "dm-snapshot" ];