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
|
./desktop
|
||||||
./hyprland
|
./hyprland
|
||||||
./hyprlock
|
./hyprlock
|
||||||
|
./services
|
||||||
./foot.nix
|
./foot.nix
|
||||||
./rofi
|
./rofi
|
||||||
./sway
|
./sway
|
||||||
|
|
|
@ -21,7 +21,7 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
||||||
|
|
||||||
exec-once = [
|
exec-once = [
|
||||||
"${pkgs.nextcloud-client}/bin/nextcloud --background"
|
"${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"
|
"${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"
|
||||||
|
|
||||||
# keepassxc ignores themeing and doesnt show up in system tray otherwise
|
# 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 {{{
|
||||||
startup = [
|
startup = [
|
||||||
{ command = "${pkgs.nextcloud-client}/bin/nextcloud --background"; }
|
{ 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.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"; }
|
||||||
{
|
{
|
||||||
command = "${pkgs.scripts.set-background}/bin/set-background -f ${wallpaper}";
|
command = "${pkgs.scripts.set-background}/bin/set-background -f ${wallpaper}";
|
||||||
|
|
|
@ -40,7 +40,6 @@
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
keepassxc
|
keepassxc
|
||||||
kdePackages.kdeconnect-kde
|
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
digikam
|
digikam
|
||||||
fragments
|
fragments
|
||||||
|
|
|
@ -164,7 +164,6 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
shared-mime-info
|
shared-mime-info
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
kdePackages.kdeconnect-kde
|
|
||||||
glib
|
glib
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
dconf
|
dconf
|
||||||
|
|
Loading…
Add table
Reference in a new issue