This commit is contained in:
Robin
2026-04-01 07:45:17 +02:00
commit fe27dff192
11 changed files with 733 additions and 0 deletions

33
custom/mount.nix Executable file
View File

@@ -0,0 +1,33 @@
{ config, ... }:
{
boot.supportedFilesystems = [ "ntfs" ];
fileSystems."/run/media/robin/2nd_ssd" = {
device = "/dev/disk/by-uuid/ab6209bf-0171-43f6-b652-7e37656da7e9";
fsType = "btrfs";
options = [
"nofail"
"x-gvfs-show"
];
};
fileSystems."/run/media/robin/1tb_volume2_lol" = {
device = "/dev/disk/by-uuid/2C81D8DF06D810EF";
fsType = "ntfs-3g";
options = [
"nofail"
"rw"
"x-gvfs-show"
];
};
fileSystems."/run/media/robin/1tb_volume" = {
device = "/dev/disk/by-uuid/fae13c7f-1e3e-4fb4-aea0-2c08297e26b5";
fsType = "btrfs";
options = [
"nofail"
"x-gvfs-show"
];
};
}