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

31 lines
1013 B
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
];
};
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
];
};
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
];
};
}