Add keybind to raise floating window, add sshfs package

This commit is contained in:
Evie Litherland-Smith 2023-05-05 08:53:59 +01:00
parent d380672318
commit 23c50c3b10
2 changed files with 3 additions and 1 deletions

View file

@ -14,6 +14,7 @@ bind = SUPER, F1, exec, swaylock
bind = SUPER, W, exec, librewolf bind = SUPER, W, exec, librewolf
bind = SUPER, F, exec, thunar bind = SUPER, F, exec, thunar
bind = SUPER, M, fullscreen, 1 bind = SUPER, M, fullscreen, 1
bind = SUPER, A, bringactivetotop
bind = , XF86AudioMute, exec, pamixer -t bind = , XF86AudioMute, exec, pamixer -t
bind = , XF86AudioRaiseVolume, exec, pamixer -i 2 bind = , XF86AudioRaiseVolume, exec, pamixer -i 2

3
home/env/ssh.nix vendored
View file

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
programs.ssh = { programs.ssh = {
enable = true; enable = true;
@ -22,4 +22,5 @@
"git.ccfe.ac.uk".user = "git"; "git.ccfe.ac.uk".user = "git";
}; };
}; };
home.packages = with pkgs; [ sshfs ];
} }