kde connect
This commit is contained in:
parent
765f2e5468
commit
c228c78aba
3 changed files with 18 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
apps = {
|
apps = {
|
||||||
keepassxc.enable = true;
|
keepassxc.enable = true;
|
||||||
nicotineplus.enable = true;
|
nicotineplus.enable = true;
|
||||||
|
kdeconnect.enable = true;
|
||||||
};
|
};
|
||||||
chat = {
|
chat = {
|
||||||
discord.enable = true;
|
discord.enable = true;
|
||||||
|
|
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./keepassxc
|
./keepassxc
|
||||||
./nicotineplus
|
./nicotineplus
|
||||||
|
./kdeconnect
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
16
modules/desktop/apps/kdeconnect/default.nix
Normal file
16
modules/desktop/apps/kdeconnect/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.desktop.apps.kdeconnect;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.desktop.apps.kdeconnect = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
kdeconnect
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue