nixcfg/hosts/common/services/nautilus.nix
2024-12-13 21:25:17 +03:00

21 lines
421 B
Nix

{ config
, lib
, ...
}:
with lib; let
cfg = config.common.services.nautilus;
in
{
options.common.services.nautilus.enable = mkEnableOption "Gnome Filemanager";
config = mkIf cfg.enable {
services.gnome.gnome-keyring.enable = true;
programs.nautilus-open-any-terminal = {
enable = true;
terminal = "alacritty";
};
services.gvfs.enable = true;
services.tumbler.enable = true;
};
}