configure sway
This commit is contained in:
parent
e889a72cfd
commit
11acd7c043
13
home.nix
13
home.nix
|
@ -16,6 +16,19 @@
|
|||
pkgs.vscodium
|
||||
];
|
||||
|
||||
wayland.windowManager.sway = {
|
||||
enable = true;
|
||||
config = rec {
|
||||
modifier = "Mod4";
|
||||
# Use kitty as default terminal
|
||||
terminal = "kitty";
|
||||
startup = [
|
||||
# Launch Firefox on start
|
||||
{command = "firefox";}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
|
|
Reference in New Issue