nixos-config/modules/home/programs/nautilus/default.nix
Aleksandr Lebedev 277951e25f Tablet improvements
- rnote for note taking
- nautilus home module
- improved on screen keyboard (added russian and improved english)
2025-08-31 15:14:25 +02:00

28 lines
460 B
Nix

{
lib,
pkgs,
inputs,
namespace,
system,
target,
format,
virtual,
systems,
config,
...
}:
with lib;
with lib.${namespace}; let
cfg = config.${namespace}.programs.nautilus;
in {
options.${namespace}.programs.nautilus = with types; {
enable = mkBoolOpt false "Enable nautilus on platforms, that are not GNOME";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
nautilus
adwaita-icon-theme
];
};
}