nixos/modules/desktop/apps/kdeconnect/default.nix
2023-07-11 20:46:23 +03:00

18 lines
346 B
Nix

{ 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
#];
programs.kdeconnect.enable = true;
};
}