dotfiles/root-conf/nixos/nixMain/device-specific.nix

33 lines
1.1 KiB
Nix

{ config, lib, nixpkgs, modulesPath, ... }:
{
fileSystems."/mnt/DT01ACA3" = {
device = "/dev/disk/by-uuid/7c3832b7-a2e4-41f4-ba1b-dff3b27c8035";
fsType = "ext4";
options = [
"users" # Allows any user to mount and unmount
"nofail" # Prevent system from failing if this drive doesn't mount
"exec" # Allows execution of binaries on this filesystem, needed for steam games
];
};
fileSystems."/mnt/DT01ACA1" = {
device = "/dev/disk/by-uuid/73b9766b-b5cc-4801-8d64-1445190f33ee";
fsType = "ext4";
options = [
"users" # Allows any user to mount and unmount
"nofail" # Prevent system from failing if this drive doesn't mount
"exec" # needed for steam games
];
};
fileSystems."/mnt/SDSSDP25" = {
device = "/dev/disk/by-uuid/080c6cde-6a90-45ad-bd63-ed79d53b75f9";
fsType = "ext4";
options = [
"users" # Allows any user to mount and unmount
"nofail" # Prevent system from failing if this drive doesn't mount
];
};
}