btrfs conversion, boost broke
This commit is contained in:
parent
043a7f6218
commit
598d3440b4
2 changed files with 25 additions and 7 deletions
|
|
@ -193,7 +193,7 @@
|
|||
gamescope
|
||||
telegram-desktop
|
||||
ladybird
|
||||
krita
|
||||
# krita # BOOST BROKE, FUCK
|
||||
meld
|
||||
pavucontrol
|
||||
pwvucontrol
|
||||
|
|
|
|||
|
|
@ -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 =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue