From 8797449080cceebcd35cf90e85318dc232d62688 Mon Sep 17 00:00:00 2001 From: Lilith Date: Thu, 29 Jan 2026 02:14:37 +0100 Subject: [PATCH 1/2] wg --- server/arr/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server/arr/default.nix b/server/arr/default.nix index 6a2d5ec..1ffa77e 100644 --- a/server/arr/default.nix +++ b/server/arr/default.nix @@ -50,10 +50,7 @@ virtualisation.oci-containers.containers."chaptarr" = { image = "robertlordhood/chaptarr:latest"; - volumes = [ - "config:/config" - "/data:/data" - ]; + volumes = [ "/data:/data" ]; environment = { "PUID" = "994"; "GUID" = "994"; From 1f4ce3887eb07b0d14025d165e1eff4b5e261912 Mon Sep 17 00:00:00 2001 From: Lilith Date: Thu, 29 Jan 2026 02:15:30 +0100 Subject: [PATCH 2/2] wg --- hosts/lilith-pad/hardware-configuration.nix | 107 ++++++++++++-------- hosts/lilith-pc/hardware-configuration.nix | 1 - 2 files changed, 66 insertions(+), 42 deletions(-) diff --git a/hosts/lilith-pad/hardware-configuration.nix b/hosts/lilith-pad/hardware-configuration.nix index 29b8266..33e5a01 100644 --- a/hosts/lilith-pad/hardware-configuration.nix +++ b/hosts/lilith-pad/hardware-configuration.nix @@ -1,61 +1,86 @@ # Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: +{ + config, + lib, + pkgs, + modulesPath, + ... +}: { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") ]; + imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ]; + boot.initrd.availableKernelModules = [ + "xhci_pci" + "nvme" + "usb_storage" + "sd_mod" + "sdhci_pci" + ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "tmpfs"; - fsType = "tmpfs"; - options = [ - "defaults" - "size=100%" - "mode=755" - ]; - }; + fileSystems."/" = { + device = "tmpfs"; + fsType = "tmpfs"; + options = [ + "defaults" + "size=100%" + "mode=755" + ]; + }; fileSystems."/boot" = { - device = "/dev/disk/by-uuid/3DFB-F4BF"; - fsType = "vfat"; - options = [ "umask=0077" ]; - }; + device = "/dev/disk/by-uuid/3DFB-F4BF"; + fsType = "vfat"; + options = [ "umask=0077" ]; + }; - fileSystems."/persist/data" = - { device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13"; - fsType = "btrfs"; - neededForBoot = true; - options = [ "subvol=@data" "noatime" "compress=zstd" ]; - }; + fileSystems."/persist/data" = { + device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13"; + fsType = "btrfs"; + neededForBoot = true; + options = [ + "subvol=@data" + "noatime" + "compress=zstd" + ]; + }; - fileSystems."/persist/cache" = - { device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13"; - fsType = "btrfs"; - neededForBoot = true; - options = [ "subvol=@cache" "noatime" "compress=zstd" ]; - }; + fileSystems."/persist/cache" = { + device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13"; + fsType = "btrfs"; + neededForBoot = true; + options = [ + "subvol=@cache" + "noatime" + "compress=zstd" + ]; + }; - fileSystems."/nix" = - { device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13"; - fsType = "btrfs"; - neededForBoot = true; - options = [ "subvol=@nix" "noatime" "compress=zstd" ]; - }; + fileSystems."/nix" = { + device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13"; + fsType = "btrfs"; + options = [ + "subvol=@nix" + "noatime" + "compress=zstd" + ]; + }; - fileSystems."/swap" = - { device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13"; - fsType = "btrfs"; - options = [ "subvol=@swap" "noatime" ]; - }; + fileSystems."/swap" = { + device = "/dev/disk/by-uuid/41e9461b-557d-4f2f-a255-534205e58d13"; + fsType = "btrfs"; + options = [ + "subvol=@swap" + "noatime" + ]; + }; - swapDevices = [ + swapDevices = [ { device = "/swap/swapfile"; priority = 0; diff --git a/hosts/lilith-pc/hardware-configuration.nix b/hosts/lilith-pc/hardware-configuration.nix index 46c9a83..4833bc6 100644 --- a/hosts/lilith-pc/hardware-configuration.nix +++ b/hosts/lilith-pc/hardware-configuration.nix @@ -59,7 +59,6 @@ fileSystems."/nix" = { device = "/dev/disk/by-uuid/5dbe939d-54a5-4092-b9c6-83f6bd4cf925"; fsType = "btrfs"; - neededForBoot = true; options = [ "noatime" "compress=zstd"