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

@@ -106,9 +106,10 @@ in
nixpkgs.config.allowUnfree = true;
imports = [
./modules/applications/emacs/default.nix
./modules/games/lutris/default.nix
./modules/window_managers/i3/default.nix
./modules/applications/emacs
./modules/games/lutris
./modules/window_managers/i3
./modules/window_managers/sway
];
programs.bash.enable = true;

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";
};
};
}