update: sway and mathpix

This commit is contained in:
2025-04-18 16:44:25 -04:00
parent c6cbef6c19
commit c757a97296
6 changed files with 39 additions and 2 deletions

View File

@@ -13,6 +13,7 @@
typescript-language-server
typescript
nodejs
mathpix-snipping-tool
];
programs.emacs = {

View File

@@ -0,0 +1,27 @@
{
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 = "firefox";}
];
};
};
services = {
dunst = {
enable = true;
};
};
}