Compare commits

..

2 commits

Author SHA1 Message Date
Lilith
1f4ce3887e
wg 2026-01-29 02:15:41 +01:00
Lilith
8797449080
wg 2026-01-29 02:15:41 +01:00
3 changed files with 67 additions and 46 deletions

View file

@ -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;

View file

@ -59,7 +59,6 @@
fileSystems."/nix" = {
device = "/dev/disk/by-uuid/5dbe939d-54a5-4092-b9c6-83f6bd4cf925";
fsType = "btrfs";
neededForBoot = true;
options = [
"noatime"
"compress=zstd"

View file

@ -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";