kde connect

This commit is contained in:
Sakooooo 2023-07-11 20:41:24 +03:00
parent 765f2e5468
commit c228c78aba
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 18 additions and 0 deletions

View file

@ -24,6 +24,7 @@
apps = {
keepassxc.enable = true;
nicotineplus.enable = true;
kdeconnect.enable = true;
};
chat = {
discord.enable = true;

View file

@ -2,5 +2,6 @@
imports = [
./keepassxc
./nicotineplus
./kdeconnect
];
}

View 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
];
};
}