mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
move gvfs outside of common
nixos-only option
This commit is contained in:
parent
ab6f80fc18
commit
0ed11de174
@ -29,9 +29,6 @@
|
||||
};
|
||||
};
|
||||
|
||||
# Allow browsing Samba shares
|
||||
services.gvfs.enable = true;
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -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; };
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user