33 lines
563 B
Nix
33 lines
563 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.gnome-keyring.enable = true;
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
wrapperFeatures.gtk = true; # Fixes common issues with GTK 3 apps
|
|
config = rec {
|
|
modifier = "Mod4";
|
|
# Use kitty as default terminal
|
|
terminal = "kitty";
|
|
startup = [
|
|
# Launch Firefox on start
|
|
{command = "kitty";}
|
|
];
|
|
output = {
|
|
"Virtual-1" = {
|
|
mode = "1920x1080@60Hz";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
services = {
|
|
dunst = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|