From 23c50c3b10222abff78e9b6fbf9e29480718f20e Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 5 May 2023 08:53:59 +0100 Subject: [PATCH] Add keybind to raise floating window, add sshfs package --- home/desktop/wayland/config/hypr/keybinds.conf | 1 + home/env/ssh.nix | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/home/desktop/wayland/config/hypr/keybinds.conf b/home/desktop/wayland/config/hypr/keybinds.conf index 17abaf1d..cc965afb 100644 --- a/home/desktop/wayland/config/hypr/keybinds.conf +++ b/home/desktop/wayland/config/hypr/keybinds.conf @@ -14,6 +14,7 @@ bind = SUPER, F1, exec, swaylock bind = SUPER, W, exec, librewolf bind = SUPER, F, exec, thunar bind = SUPER, M, fullscreen, 1 +bind = SUPER, A, bringactivetotop bind = , XF86AudioMute, exec, pamixer -t bind = , XF86AudioRaiseVolume, exec, pamixer -i 2 diff --git a/home/env/ssh.nix b/home/env/ssh.nix index 49dc6e08..796df37e 100644 --- a/home/env/ssh.nix +++ b/home/env/ssh.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { programs.ssh = { enable = true; @@ -22,4 +22,5 @@ "git.ccfe.ac.uk".user = "git"; }; }; + home.packages = with pkgs; [ sshfs ]; }