dotfiles/root-conf/nixos/device-specific.nix
2025-05-19 14:13:37 +02:00

34 lines
1011 B
Nix

{ config, lib, nixpkgs, modulesPath, ... }:
{
fileSystems."/mnt/DT01ACA3" = {
device = "/dev/disk/by-uuid/0E6A9C824AF7FF42";
fsType = "ntfs";
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
];
};
}