feat(desktop): move terminal config to homes and use home-manager modules

This commit is contained in:
Mohammad Rafiq 2025-06-14 15:39:14 +08:00
parent ee2dfd8398
commit a04688d17b
No known key found for this signature in database
6 changed files with 30 additions and 25 deletions

View file

@ -14,4 +14,5 @@ mkMerge [
(import ./launcher.nix)
(import ./media-player.nix)
(import ./status-bar.nix { inherit pkgs; })
(import ./terminal.nix)
]

View file

@ -0,0 +1,4 @@
{
home.sessionVariables.TERMINAL = "ghostty -e";
programs.ghostty.settings.confirm-close-surface = false;
}