reinstall

This commit is contained in:
2025-10-06 21:38:49 -05:00
parent ee617b1a28
commit cd65de152d
42 changed files with 12 additions and 12 deletions

4
hosts/snowbelle/configuration.nix Normal file → Executable file
View File

@@ -13,11 +13,11 @@
system = {
ssh.enable = true;
sops.enable = true;
docker.enable = true;
docker.enable = false;
syncthing.enable = true;
# syncthing.mode = "server";
tailscale.enable = true;
nvidia.enable = true;
# nvidia.enable = true;
};
homelab = {
zfs.enable = true;

View File

@@ -8,31 +8,31 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "ahci" "nvme" "uas" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/0fec6d8a-2264-4172-832a-3ea95967a3d7";
{ device = "/dev/disk/by-uuid/8bc3b53e-804f-44d5-8da3-9913dda0e5c2";
fsType = "btrfs";
options = [ "subvol=@root" ];
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/0fec6d8a-2264-4172-832a-3ea95967a3d7";
fsType = "btrfs";
options = [ "subvol=@home" ];
};
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/0fec6d8a-2264-4172-832a-3ea95967a3d7";
{ device = "/dev/disk/by-uuid/8bc3b53e-804f-44d5-8da3-9913dda0e5c2";
fsType = "btrfs";
options = [ "subvol=@nix" ];
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/8bc3b53e-804f-44d5-8da3-9913dda0e5c2";
fsType = "btrfs";
options = [ "subvol=@home" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/BED7-7930";
{ device = "/dev/disk/by-uuid/4CD7-D44A";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};