move gvfs outside of common

nixos-only option
This commit is contained in:
Noah Masur 2023-03-02 14:49:20 -05:00
parent ab6f80fc18
commit 0ed11de174
2 changed files with 16 additions and 13 deletions

View File

@ -29,9 +29,6 @@
};
};
# Allow browsing Samba shares
services.gvfs.enable = true;
};
}

View File

@ -2,19 +2,25 @@
options = { samba.enable = lib.mkEnableOption "Enable Samba sharing."; };
config = lib.mkIf (config.samba.enable) {
config = {
services.samba.enable = true;
services.samba.shares.video = {
path = "/data/video";
browseable = "yes";
"read only" = "no";
"guest ok" = "no";
"force user" = config.user;
"force group" = config.user;
comment = "Movies and TV";
services.samba = lib.mkIf (config.samba.enable) {
enable = true;
shares.video = {
path = "/data/video";
browseable = "yes";
"read only" = "no";
"guest ok" = "no";
"force user" = config.user;
"force group" = config.user;
comment = "Movies and TV";
};
};
# Allow browsing Samba shares
services.gvfs =
lib.mkIf (config.gui.enable && config.nautilus.enable) { enable = true; };
};
}