diff --git a/configuration.nix b/configuration.nix index 714be48..3f7d3f8 100644 --- a/configuration.nix +++ b/configuration.nix @@ -193,7 +193,7 @@ gamescope telegram-desktop ladybird - krita + # krita # BOOST BROKE, FUCK meld pavucontrol pwvucontrol diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 95f4d17..7a3d8ec 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -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 =