From e2e6370ce2d347657df4b1ea0a638ed3495a5440 Mon Sep 17 00:00:00 2001 From: insert Date: Thu, 27 Feb 2025 06:29:22 -0500 Subject: [PATCH] Update keybindings --- configuration.nix | 13 +++++++++++-- home.nix | 46 ++++++++++++++++++++++++++-------------------- 2 files changed, 37 insertions(+), 22 deletions(-) diff --git a/configuration.nix b/configuration.nix index d472af5..fbac0ae 100644 --- a/configuration.nix +++ b/configuration.nix @@ -56,6 +56,7 @@ services.xserver.desktopManager.plasma5.enable = false; services.xserver.desktopManager.gnome.enable = true; environment.gnome.excludePackages = (with pkgs; [ + gnome-remote-desktop gnome-weather gnome-user-docs gnome-text-editor @@ -218,14 +219,21 @@ monocraft ]; + nixpkgs.overlays = [ (final: prev: { + gnome-remote-desktop = prev.gnome-remote-desktop.overrideAttrs(old: { + buildInputs = old.buildInputs++[prev.libvncserver]; + mesonFlags = old.mesonFlags++["-Dvnc=true"]; + }); - # List packages installed in system profile. To search, run: - # $ nix search wget +}) ]; + +services.gnome.gnome-remote-desktop.enable = true; programs.nix-ld.enable = true; environment.systemPackages = [ # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # wget pkgs.tailscale + pkgs.opencomposite pkgs.wayland pkgs.docker-compose pkgs.networkmanagerapplet @@ -255,6 +263,7 @@ #inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland pkgs.nautilus pkgs.libsForQt5.ark + pkgs.gnome-remote-desktop ]; services.tailscale.enable = true; services.gvfs.enable = true; diff --git a/home.nix b/home.nix index 840d080..db82af0 100644 --- a/home.nix +++ b/home.nix @@ -125,36 +125,36 @@ settings."org/gnome/desktop/wm/keybindings" = { switch-to-workspace-left = ["Left"]; switch-to-workspace-right = ["Right"]; - switch-to-workspace-1="['1']"; + switch-to-workspace-1=["1"]; switch-to-application-1="@as []"; - move-to-workspace-1="['1']"; - switch-to-workspace-2="['2']"; + move-to-workspace-1=["1"]; + switch-to-workspace-2=["2"]; switch-to-application-2="@as []"; - move-to-workspace-2="['2']"; - switch-to-workspace-3="['3']"; + move-to-workspace-2=["2"]; + switch-to-workspace-3=["3"]; switch-to-application-3="@as []"; - move-to-workspace-3="['3']"; - switch-to-workspace-4="['4']"; + move-to-workspace-3=["3"]; + switch-to-workspace-4=["4"]; switch-to-application-4="@as []"; - move-to-workspace-4="['4']"; - switch-to-workspace-5="['5']"; + move-to-workspace-4=["4"]; + switch-to-workspace-5=["5"]; switch-to-application-5="@as []"; - move-to-workspace-5="['5']"; - switch-to-workspace-6="['6']"; + move-to-workspace-5=["5"]; + switch-to-workspace-6=["6"]; switch-to-application-6="@as []"; - move-to-workspace-6="['6']"; - switch-to-workspace-7="['7']"; + move-to-workspace-6=["6"]; + switch-to-workspace-7=["7"]; switch-to-application-7="@as []"; - move-to-workspace-7="['7']"; - switch-to-workspace-8="['8']"; + move-to-workspace-7=["7"]; + switch-to-workspace-8=["8"]; switch-to-application-8="@as []"; - move-to-workspace-8="['8']"; - switch-to-workspace-9="['9']"; + move-to-workspace-8=["8"]; + switch-to-workspace-9=["9"]; switch-to-application-9="@as []"; - move-to-workspace-9="['9']"; - switch-to-workspace-10="['0']"; + move-to-workspace-9=["9"]; + switch-to-workspace-10=["0"]; switch-to-application-10="@as []"; - move-to-workspace-10="['0']"; + move-to-workspace-10=["0"]; close = ["c"]; toggle-fullscreen = ["f"]; }; @@ -185,6 +185,10 @@ tile-by-default = true; active-hint = true; hint-color-rgba = "rgba(133,193,220,1)"; + toggle-stacking-global = ["w"]; + toggle-stacking = ["w"]; + toggle-floating = ["v"]; + tile-enter = ["b"]; }; settings."org/gnome/shell/extensions/unite" = { hide-window-titlebars = "always"; @@ -259,6 +263,8 @@ }; programs.librewolf.enable = true; + services.kdeconnect.enable = true; + services.kdeconnect.indicator = true; programs.git = { enable = true;