porani: change /media drive
This commit is contained in:
parent
05488befc5
commit
ac196a752c
1 changed files with 34 additions and 22 deletions
|
@ -1,5 +1,7 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
imports = [ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> ];
|
imports = [
|
||||||
|
<nixpkgs/nixos/modules/installer/scan/not-detected.nix>
|
||||||
|
{
|
||||||
|
|
||||||
boot.initrd.availableKernelModules =
|
boot.initrd.availableKernelModules =
|
||||||
[ "ehci_pci" "ahci" "usb_storage" "sd_mod" "sdhci_pci" ];
|
[ "ehci_pci" "ahci" "usb_storage" "sd_mod" "sdhci_pci" ];
|
||||||
|
@ -22,6 +24,36 @@
|
||||||
device = "/dev/sda2";
|
device = "/dev/sda2";
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
}];
|
}];
|
||||||
|
}
|
||||||
|
|
||||||
|
# automount
|
||||||
|
# ---------
|
||||||
|
(let
|
||||||
|
mediaUUID = "3d106f56-89e5-400d-9d6b-1dd957919548";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
fileSystems."/media" = {
|
||||||
|
#device = "/dev/disk/by-uuid/162c2f9e-8baa-4433-99fd-bb7e7b69472f";
|
||||||
|
device = "/dev/disk/by-uuid/${mediaUUID}";
|
||||||
|
fsType = "ext4";
|
||||||
|
options = [
|
||||||
|
"nofail"
|
||||||
|
"noauto"
|
||||||
|
#"x-systemd.device-timeout=1ms"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
systemd.mounts = [{
|
||||||
|
enable = true;
|
||||||
|
options = "nofail,noauto";
|
||||||
|
type = "ext4";
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
#what = "/dev/disk/by-uuid/162c2f9e-8baa-4433-99fd-bb7e7b69472f";
|
||||||
|
what = "/dev/disk/by-uuid/${mediaUUID}";
|
||||||
|
where = "/media";
|
||||||
|
}];
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
# NTFS support
|
# NTFS support
|
||||||
# ------------
|
# ------------
|
||||||
|
@ -42,26 +74,6 @@
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
# automount
|
|
||||||
# ---------
|
|
||||||
fileSystems."/media" = {
|
|
||||||
device = "/dev/disk/by-uuid/162c2f9e-8baa-4433-99fd-bb7e7b69472f";
|
|
||||||
fsType = "ext4";
|
|
||||||
options = [
|
|
||||||
"nofail"
|
|
||||||
"noauto"
|
|
||||||
#"x-systemd.device-timeout=1ms"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
systemd.mounts = [{
|
|
||||||
enable = true;
|
|
||||||
options = "nofail,noauto";
|
|
||||||
type = "ext4";
|
|
||||||
wantedBy = [ "multi-user.target" ];
|
|
||||||
what = "/dev/disk/by-uuid/162c2f9e-8baa-4433-99fd-bb7e7b69472f";
|
|
||||||
where = "/media";
|
|
||||||
}];
|
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
nix.maxJobs = lib.mkDefault 4;
|
nix.maxJobs = lib.mkDefault 4;
|
||||||
|
|
Loading…
Reference in a new issue