format code
All checks were successful
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 51s

This commit is contained in:
smayzy 2025-11-27 13:47:08 +01:00
parent 42e50ad6f3
commit 631c57933a
2 changed files with 21 additions and 4 deletions

View File

@ -27,19 +27,31 @@
fileSystems."/home/smayzy/Main" = {
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Main";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
options = [
"x-systemd.automount"
"noauto"
"nfsvers=4"
];
depends = [ "/home" ];
};
fileSystems."/home/smayzy/ISO" = {
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/ISO";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
options = [
"x-systemd.automount"
"noauto"
"nfsvers=4"
];
depends = [ "/home" ];
};
fileSystems."/home/smayzy/Vault" = {
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Vault";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
options = [
"x-systemd.automount"
"noauto"
"nfsvers=4"
];
depends = [ "/home" ];
};

View File

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in