Tablet improvements
- rnote for note taking - nautilus home module - improved on screen keyboard (added russian and improved english)
This commit is contained in:
parent
df3795f99b
commit
277951e25f
4 changed files with 46 additions and 6 deletions
28
modules/home/programs/nautilus/default.nix
Normal file
28
modules/home/programs/nautilus/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -45,6 +45,7 @@ in {
|
|||
|
||||
environment.systemPackages = with pkgs;
|
||||
with pkgs.${namespace}; [
|
||||
rnote
|
||||
libreoffice
|
||||
root-files
|
||||
gparted
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue