desktop: add docker alias and hotkey for sway next workspace

This commit is contained in:
Kabbone 2024-02-11 19:47:19 +01:00
parent 9ed74e74d2
commit 88c2a62223
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
2 changed files with 11 additions and 4 deletions

View File

@ -212,6 +212,9 @@
"${mod}+Shift+9" = "move container to workspace number 9"; "${mod}+Shift+9" = "move container to workspace number 9";
"${mod}+Shift+0" = "move container to workspace number 10"; "${mod}+Shift+0" = "move container to workspace number 10";
"${mod}+Tab" = "workspace next";
"${mod}+Alt+Tab" = "workspace prev";
"${mod}+k" = "splith"; "${mod}+k" = "splith";
"${mod}+v" = "splitv"; "${mod}+v" = "splitv";

View File

@ -6,7 +6,11 @@
{ {
virtualisation = { virtualisation = {
docker.enable = true; podman = {
enable = true;
autoPrune.enable = true;
dockerCompat = true;
};
}; };
users.groups.docker.members = [ "${user}" ]; users.groups.docker.members = [ "${user}" ];
@ -17,9 +21,9 @@
# ''; # Alias to easily start container # ''; # Alias to easily start container
#}; #};
environment.systemPackages = with pkgs; [ # environment.systemPackages = with pkgs; [
docker-compose # docker-compose
]; # ];
} }
# USAGE: # USAGE: