mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.home.apps.nemo.enable {
|
|
home.packages = with pkgs; [
|
|
cinnamon.nemo
|
|
];
|
|
|
|
dconf = {
|
|
enable = true;
|
|
settings = {
|
|
"org/nemo/preferences" = {
|
|
show-image-thumbnails = "always";
|
|
thumbnail-limit = lib.hm.gvariant.mkUint64 (100 * 1024 * 1024);
|
|
tooltips-in-icon-view = true;
|
|
tooltips-show-access-date = true;
|
|
tooltips-show-birth-date = true;
|
|
tooltips-show-file-type = true;
|
|
tooltips-show-mod-date = true;
|
|
};
|
|
|
|
"org/nemo/preferences/menu-config" = {
|
|
background-menu-open-as-root =
|
|
!(config.ar.home.desktop.hyprland.enable || config.ar.home.desktop.sway.enable);
|
|
selection-menu-open-as-root =
|
|
!(config.ar.home.desktop.hyprland.enable || config.ar.home.desktop.sway.enable);
|
|
};
|
|
|
|
"org/nemo/plugins".disabled-actions =
|
|
lib.optionals
|
|
(config.ar.home.desktop.hyprland.enable || config.ar.home.desktop.sway.enable) [
|
|
"90_new-launcher.nemo_action"
|
|
"add-desklets.nemo_action"
|
|
"change-background.nemo_action"
|
|
"mount-archive.nemo_action"
|
|
"set-as-background.nemo_action"
|
|
"set-resolution.nemo_action"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|