feat(home:file-manager): add nemo initial configuration

This commit is contained in:
ooks-io 2024-06-23 23:18:20 +12:00
parent dde1dca4f7
commit 65fb953361
7 changed files with 51 additions and 5 deletions

View file

@ -11,5 +11,6 @@
./terminal.nix
./tools.nix
./wayland.nix
./fileManager.nix
];
}

View file

@ -0,0 +1,11 @@
{ lib, ... }:
let
inherit (lib) mkEnableOption;
in
{
options.ooknet.fileManager = {
nemo.enable = mkEnableOption "";
};
}