Tablet improvements

- rnote for note taking
- nautilus home module
- improved on screen keyboard (added russian and improved english)
This commit is contained in:
Aleksandr Lebedev 2025-08-31 15:14:25 +02:00
parent df3795f99b
commit 277951e25f
4 changed files with 46 additions and 6 deletions

View file

@ -0,0 +1,28 @@
{
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
];
};
}