My nix-darwin and NixOS config
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: make ghostty default

+9 -3
+2 -2
home/default.nix
··· 32 32 ./programs/zsh.nix 33 33 ./programs/ssh.nix 34 34 ] 35 - ++ lib.optionals (!isDarwin) [ 36 - ./programs/terminal.nix # Konsole profile — all non-Darwin hosts 35 + ++ lib.optionals (!isDarwin && !cfg.isDesktop) [ 36 + ./programs/terminal.nix # Konsole profile — Linux server hosts only 37 37 ] 38 38 ++ lib.optionals (cfg.isDesktop && !isDarwin) [ 39 39 ./programs/kde.nix # KDE Plasma settings — Linux desktop only
+7 -1
settings/plasma/default.nix
··· 209 209 210 210 configFile."plasmanotifyrc".Notifications.PopupPosition = "TopRight"; 211 211 212 + # ── Default terminal ────────────────────────────────────────────────────── 213 + configFile."kdeglobals".General = { 214 + TerminalApplication = "ghostty"; 215 + TerminalService = "com.mitchellh.ghostty.desktop"; 216 + }; 217 + 212 218 # ── Dolphin ─────────────────────────────────────────────────────────────── 213 219 configFile."dolphinrc" = { 214 220 General = { ··· 281 287 "applications:discord.desktop" 282 288 "applications:firefox.desktop" 283 289 "applications:code.desktop" 284 - "applications:org.kde.konsole.desktop" 290 + "applications:com.mitchellh.ghostty.desktop" 285 291 ]; 286 292 }; 287 293 }