Setup sway config

This commit is contained in:
2024-09-08 14:06:07 -07:00
parent 692cebc839
commit 75baf55d5b
3 changed files with 18 additions and 3 deletions

View File

@@ -5,6 +5,8 @@
enable = true;
config = {
modifier = "Mod4";
terminal = "kitty";
defaultWorkspace = "workspace number 1";
};
};
}

View File

@@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
{
wayland.windowManager.sway = {
enable = true;
config = {
modifier = "Mod4";
terminal = "kitty";
defaultWorkspace = "workspace number 1";
};
};
}