Compare commits

...

3 Commits

5 changed files with 7 additions and 7 deletions

View File

@@ -11,7 +11,7 @@ in
../../users/users.nix
../../modules/system
../../modules/homelab
../../modules/homelab/gameservers/minecraft_recpro
../../modules/homelab/minecraft_recpro
];
modules = {

View File

@@ -6,8 +6,8 @@
}: {
# services show up in glance in reverse import order lmao
imports = [
./shares/nfs.nix
./shares/smb.nix
./shares/zfs.nix
./nfs
./smb
./zfs
];
}

View File

@@ -12,7 +12,7 @@ let
'';
#/holocron/vault *(rw,sync,no_subtree_check,no_root_squash)
in {
options.modules.homelab.nfs = {
options.modules.fileshare.nfs = {
enable = lib.mkEnableOption "enables nfs";
};

View File

@@ -22,7 +22,7 @@ let
};
};
in {
options.modules.homelab.smb = {
options.modules.fileshare.smb = {
enable = lib.mkEnableOption "enables smb";
};

View File

@@ -6,7 +6,7 @@
}: let
cfg = config.modules.fileshare.zfs;
in {
options.modules.homelab.zfs = {
options.modules.fileshare.zfs = {
enable = lib.mkEnableOption "enables zfs";
};