we
This commit is contained in:
parent
c44fe14818
commit
f9dd814309
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./keepassxc
|
./keepassxc
|
||||||
|
./pass
|
||||||
./nicotineplus
|
./nicotineplus
|
||||||
./kdeconnect
|
./kdeconnect
|
||||||
./nemo
|
./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