we
This commit is contained in:
parent
c44fe14818
commit
f9dd814309
2 changed files with 20 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./keepassxc
|
||||
./pass
|
||||
./nicotineplus
|
||||
./kdeconnect
|
||||
./nemo
|
||||
|
|
19
modules/desktop/apps/pass/default.nix
Normal file
19
modules/desktop/apps/pass/default.nix
Normal 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 {
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue