format code
This commit is contained in:
parent
42e50ad6f3
commit
631c57933a
@ -27,19 +27,31 @@
|
|||||||
fileSystems."/home/smayzy/Main" = {
|
fileSystems."/home/smayzy/Main" = {
|
||||||
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Main";
|
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Main";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
|
options = [
|
||||||
|
"x-systemd.automount"
|
||||||
|
"noauto"
|
||||||
|
"nfsvers=4"
|
||||||
|
];
|
||||||
depends = [ "/home" ];
|
depends = [ "/home" ];
|
||||||
};
|
};
|
||||||
fileSystems."/home/smayzy/ISO" = {
|
fileSystems."/home/smayzy/ISO" = {
|
||||||
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/ISO";
|
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/ISO";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
|
options = [
|
||||||
|
"x-systemd.automount"
|
||||||
|
"noauto"
|
||||||
|
"nfsvers=4"
|
||||||
|
];
|
||||||
depends = [ "/home" ];
|
depends = [ "/home" ];
|
||||||
};
|
};
|
||||||
fileSystems."/home/smayzy/Vault" = {
|
fileSystems."/home/smayzy/Vault" = {
|
||||||
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Vault";
|
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Vault";
|
||||||
fsType = "nfs";
|
fsType = "nfs";
|
||||||
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
|
options = [
|
||||||
|
"x-systemd.automount"
|
||||||
|
"noauto"
|
||||||
|
"nfsvers=4"
|
||||||
|
];
|
||||||
depends = [ "/home" ];
|
depends = [ "/home" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,9 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) mkIf mkOption types;
|
inherit (lib) mkIf mkOption types;
|
||||||
in
|
in
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user