Add Kde Connect
This commit is contained in:
parent
c4d22b94a6
commit
02225c295a
|
@ -13,4 +13,5 @@
|
||||||
programs.nix-ld.enable = true;
|
programs.nix-ld.enable = true;
|
||||||
programs.nix-ld.libraries = with pkgs; [];
|
programs.nix-ld.libraries = with pkgs; [];
|
||||||
programs.adb.enable = true;
|
programs.adb.enable = true;
|
||||||
|
programs.kdeconnect.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
++ [(import ./git.nix)] # version control
|
++ [(import ./git.nix)] # version control
|
||||||
++ [(import ./gtk.nix)] # gtk theme
|
++ [(import ./gtk.nix)] # gtk theme
|
||||||
++ [(import ./hyprland)] # window manager
|
++ [(import ./hyprland)] # window manager
|
||||||
|
++ [(import ./kdeconnect.nix)]
|
||||||
++ [(import ./kitty.nix)] # terminal
|
++ [(import ./kitty.nix)] # terminal
|
||||||
++ [(import ./swaync/swaync.nix)] # notification deamon
|
++ [(import ./swaync/swaync.nix)] # notification deamon
|
||||||
++ [(import ./nextcloud.nix)] # nextcloud client
|
++ [(import ./nextcloud.nix)] # nextcloud client
|
||||||
|
|
6
modules/home/kdeconnect.nix
Normal file
6
modules/home/kdeconnect.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
services.kdeconnect = {
|
||||||
|
enable = true;
|
||||||
|
indicator = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue