nixos/modules/desktop/apps/kdeconnect/default.nix

18 lines
346 B
Nix
Raw Normal View History

2023-07-11 21:41:24 +04:00
{ 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 {
2023-07-11 21:46:23 +04:00
#users.users.sako.packages = with pkgs; [
# kdeconnect
#];
programs.kdeconnect.enable = true;
2023-07-11 21:41:24 +04:00
};
}