kdeconnect

This commit is contained in:
2025-11-03 13:47:02 +01:00
parent d3c2cd9d70
commit 2b8f60cf1e
4 changed files with 37 additions and 5 deletions

15
modules/kdeconnect.nix Normal file
View File

@@ -0,0 +1,15 @@
{
pkgs,
lib,
config,
...
}:
{
environment.systemPackages = with pkgs; [
kdePackages.xdg-desktop-portal-kde
kdePackages.kdeconnect-kde
];
programs.kdeconnect = {
enable = true;
};
}