Add shell module and bootstrap fixes

This commit is contained in:
randogoth 2026-02-02 22:07:05 +02:00
parent 280f83488b
commit 879754cb8d
5 changed files with 202 additions and 1 deletions

View file

@ -70,7 +70,12 @@
'';
};
home.sessionVariables = { };
home.sessionVariables = {
# you can change the default terminal and editor here
TERMINAL = "${pkgs.ghostty}/bin/ghostty";
DEFAULT_TERMINAL = "${pkgs.ghostty}/bin/ghostty";
EDITOR = "${pkgs.micro}/bin/micro";
};
programs.home-manager.enable = true;
}