Setup sway config
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -5,6 +5,8 @@
|
||||
enable = true;
|
||||
config = {
|
||||
modifier = "Mod4";
|
||||
terminal = "kitty";
|
||||
defaultWorkspace = "workspace number 1";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
12
home/modules/window_managers/sway/default.nix
Normal file
12
home/modules/window_managers/sway/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
config = {
|
||||
modifier = "Mod4";
|
||||
terminal = "kitty";
|
||||
defaultWorkspace = "workspace number 1";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user