Compare commits

..

1 Commits

Author SHA1 Message Date
75baf55d5b Setup sway config 2024-09-08 14:06:07 -07:00
3 changed files with 18 additions and 3 deletions

View File

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

View File

@@ -5,6 +5,8 @@
enable = true; enable = true;
config = { config = {
modifier = "Mod4"; 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";
};
};
}