chore: add kdeconnect through options
This commit is contained in:
parent
ee952b7777
commit
d6c16ee186
7 changed files with 12 additions and 4 deletions
|
@ -6,6 +6,7 @@
|
|||
./desktop
|
||||
./hyprland
|
||||
./hyprlock
|
||||
./services
|
||||
./foot.nix
|
||||
./rofi
|
||||
./sway
|
||||
|
|
|
@ -21,7 +21,7 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
|||
|
||||
exec-once = [
|
||||
"${pkgs.nextcloud-client}/bin/nextcloud --background"
|
||||
"${pkgs.kdePackages.kdeconnect-kde}/bin/kdeconnect-indicator"
|
||||
"${config.services.kdeconnect.package}/bin/kdeconnect-indicator"
|
||||
"${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"
|
||||
|
||||
# keepassxc ignores themeing and doesnt show up in system tray otherwise
|
||||
|
|
3
home/services/default.nix
Normal file
3
home/services/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
imports = [ ./kdeconnect.nix ];
|
||||
}
|
6
home/services/kdeconnect.nix
Normal file
6
home/services/kdeconnect.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
config.services.kdeconnect = {
|
||||
enable = true;
|
||||
indicator = true;
|
||||
};
|
||||
}
|
|
@ -117,7 +117,7 @@ lib.mkIf osConfig.programs.sway.enable {
|
|||
#: Startup {{{
|
||||
startup = [
|
||||
{ command = "${pkgs.nextcloud-client}/bin/nextcloud --background"; }
|
||||
{ command = "${pkgs.kdePackages.kdeconnect-kde}/bin/kdeconnect-indicator"; }
|
||||
{ command = "${config.services.kdeconnect.package}/bin/kdeconnect-indicator"; }
|
||||
{ command = "${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"; }
|
||||
{
|
||||
command = "${pkgs.scripts.set-background}/bin/set-background -f ${wallpaper}";
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
|
||||
packages = with pkgs; [
|
||||
keepassxc
|
||||
kdePackages.kdeconnect-kde
|
||||
nextcloud-client
|
||||
digikam
|
||||
fragments
|
||||
|
|
|
@ -164,7 +164,6 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
shared-mime-info
|
||||
nextcloud-client
|
||||
kdePackages.kdeconnect-kde
|
||||
glib
|
||||
wireguard-tools
|
||||
dconf
|
||||
|
|
Loading…
Add table
Reference in a new issue