Files
nixos-conf/custom/mount.nix
2026-04-01 07:45:17 +02:00

34 lines
637 B
Nix
Executable File

{ 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"
];
};
}