dotfiles/modules/nixos/services/samba.nix
Noah Masur 0ed11de174 move gvfs outside of common
nixos-only option
2023-03-02 14:49:20 -05:00

27 lines
596 B
Nix

{ config, lib, ... }: {
options = { samba.enable = lib.mkEnableOption "Enable Samba sharing."; };
config = {
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; };
};
}