This commit is contained in:
Sakooooo 2023-08-09 18:47:20 +03:00
parent c44fe14818
commit f9dd814309
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 20 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{
imports = [
./keepassxc
./pass
./nicotineplus
./kdeconnect
./nemo

View file

@ -0,0 +1,19 @@
{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.desktop.apps.pass;
in {
options.modules.desktop.apps.pass = {
enable = mkEnableOption false;
};
config =
mkIf cfg.enable {
};
}