btrfs conversion, boost broke

This commit is contained in:
TheK0tYaRa 2026-02-25 13:33:04 +02:00
parent 043a7f6218
commit 598d3440b4
2 changed files with 25 additions and 7 deletions

View file

@ -193,7 +193,7 @@
gamescope
telegram-desktop
ladybird
krita
# krita # BOOST BROKE, FUCK
meld
pavucontrol
pwvucontrol

View file

@ -13,15 +13,33 @@
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
# fileSystems."/" =
# { device = "/dev/disk/by-label/NVME_NIXOS";
# fsType = "ext4";
# };
#
# fileSystems."/boot" =
# { device = "/dev/disk/by-label/NVME_ESP";
# fsType = "vfat";
# options = [ "fmask=0022" "dmask=0022" ];
# };
fileSystems."/" =
{ device = "/dev/disk/by-label/NVME_NIXOS";
fsType = "ext4";
{ device = "/dev/disk/by-label/NVME_BTRFS";
fsType = "btrfs";
options = [ "subvol=root" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-label/NVME_ESP";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
fileSystems."/home" =
{ device = "/dev/disk/by-label/NVME_BTRFS";
fsType = "btrfs";
options = [ "subvol=home" ];
};
fileSystems."/nix" =
{ device = "/dev/disk/by-label/NVME_BTRFS";
fsType = "btrfs";
options = [ "subvol=nix" ];
};
swapDevices =