summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-04-05 21:13:39 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-04-05 21:13:39 +0200
commit75321395bf9bbc03fdff996f8f486efbecda43b1 (patch)
treef02e5b143b4c2c42d177517619fca2aaac1bb1ca
parent1a5bde9efe19ab81230f8b02dbfa1af6993f1714 (diff)
Mount other filesystems on apocalypse
-rw-r--r--nixos/hosts/apocalypse/hardware-configuration.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixos/hosts/apocalypse/hardware-configuration.nix b/nixos/hosts/apocalypse/hardware-configuration.nix
index 998c386..f611cd6 100644
--- a/nixos/hosts/apocalypse/hardware-configuration.nix
+++ b/nixos/hosts/apocalypse/hardware-configuration.nix
@@ -38,6 +38,32 @@ menuentry 'UEFI Firmware' $menuentry_id_option 'uefi-firmware' {
options = [ "subvol=@snapshots" ];
};
+ fileSystems."/boot" =
+ { device = "/dev/disk/by-uuid/6E1A-07F4";
+ fsType = "vfat";
+ options = [ "fmask=0077" "dmask=0077" ];
+ };
+
+ fileSystems."/store2" =
+ { device = "/dev/disk/by-uuid/5368282f-c09d-44cf-9cf2-e69a2d415da6";
+ fsType = "btrfs";
+ options = [ "noatime" "compress=zstd" "subvol=/"];
+ };
+ fileSystems."/store1" =
+ { device = "/dev/disk/by-uuid/6A2E2BFF2E2BC2C5";
+ fsType = "ntfs-3g" ;
+ options = ["rw" "uid=1000" "gid=100"];
+ };
+ fileSystems."/win_games" =
+ { device = "/dev/disk/by-uuid/6A680789680752ED";
+ fsType = "ntfs-3g" ;
+ options = ["rw" "uid=1000" "gid=100"];
+ };
+ fileSystems."/windows" = {
+ device = "/dev/disk/by-uuid/7AFA6C84FA6C3E8F";
+ fsType = "ntfs-3g";
+ options = ["rw" "uid=1000" "gid=100"];
+ };
swapDevices =
[ { device = "/dev/mapper/cryptswap"; }