summaryrefslogtreecommitdiff
path: root/neko
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-01-11 21:31:41 +0100
committerChristoph Cullmann <cullmann@kde.org>2024-01-11 21:31:41 +0100
commitb32daf32dd5ae707470f3db59338fce7013047f8 (patch)
treeb3b62c643ccb2be5cf5f741a39a4bef8279daec1 /neko
parent83ae4d942c50cbd0f257b3a985a670824def1152 (diff)
enable now created filesystems
Diffstat (limited to 'neko')
-rw-r--r--neko/hardware-configuration.nix30
1 files changed, 15 insertions, 15 deletions
diff --git a/neko/hardware-configuration.nix b/neko/hardware-configuration.nix
index 8506313..9b3fa9d 100644
--- a/neko/hardware-configuration.nix
+++ b/neko/hardware-configuration.nix
@@ -61,21 +61,21 @@
depends = [ "/data" ];
};
-# fileSystems."/home/cullmann/vms" =
-# { device = "/dev/disk/by-id/nvme-CT2000P5PSSD8_213330E4ED05";
-# fsType = "bcachefs";
-# neededForBoot = true;
-# options = [ "noatime" "nodiratime" ];
-# depends = [ "/home" ];
-# };
-#
-# fileSystems."/home/cullmann/projects" =
-# { device = "/dev/disk/by-id/nvme-Samsung_SSD_980_PRO_2TB_S69ENF0R846614L";
-# fsType = "bcachefs";
-# neededForBoot = true;
-# options = [ "noatime" "nodiratime" ];
-# depends = [ "/home" ];
-# };
+ fileSystems."/home/cullmann/vms" =
+ { device = "/dev/disk/by-id/nvme-CT2000P5PSSD8_213330E4ED05";
+ fsType = "bcachefs";
+ neededForBoot = true;
+ options = [ "noatime" "nodiratime" ];
+ depends = [ "/home" ];
+ };
+
+ fileSystems."/home/cullmann/projects" =
+ { device = "/dev/disk/by-id/nvme-Samsung_SSD_980_PRO_2TB_S69ENF0R846614L";
+ fsType = "bcachefs";
+ neededForBoot = true;
+ options = [ "noatime" "nodiratime" ];
+ depends = [ "/home" ];
+ };
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;