Some changes :p

This commit is contained in:
Henry Hiles 2023-10-30 19:54:04 -04:00
parent 4613bc2e9b
commit a701e1a2c9
4 changed files with 27 additions and 25 deletions

View file

@ -1,12 +1,13 @@
wayland.windowManager.sway = {
enable = true;
config = rec {
modifier = "Mod4";
# Use kitty as default terminal
terminal = "kitty";
startup = [
# Launch Firefox on start
{command = "firefox";}
];
{pkgs, ...}: {
wayland.windowManager.sway = {
enable = true;
package = pkgs.swayfx;
config = {
modifier = "Mod4";
# Use kitty as default terminal
terminal = "kitty";
startup = [
];
};
};
};
}