1
1
Fork 0

Compare commits

..

2 commits

Author SHA1 Message Date
5abd7574c9
ssh: use xterm-256color terminfo
Signed-off-by: Myned <dev@bjork.tech>
2025-01-31 22:29:08 -06:00
0e7995181d
mynix: remove gammastep override
Signed-off-by: Myned <dev@bjork.tech>
2025-01-31 22:27:40 -06:00
2 changed files with 9 additions and 3 deletions

View file

@ -62,8 +62,6 @@
#// services.logind.powerKey = "ignore"; # Disable power button
home-manager.users.${config.custom.username} = {
services.gammastep.settings.general.brightness-night = lib.mkForce 0.4;
# Prevent secondary GPU reset from crashing window manager
wayland.windowManager.hyprland.settings = {
monitor = [

View file

@ -10,7 +10,15 @@ in {
config = mkIf cfg.enable {
home-manager.users.${config.custom.username} = {
programs.ssh.enable = true;
programs.ssh = {
enable = true;
# https://ghostty.org/docs/help/terminfo#configure-ssh-to-fall-back-to-a-known-terminfo-entry
extraConfig = ''
Host *
SetEnv TERM=xterm-256color
'';
};
# Work around FHS permissions
# https://github.com/nix-community/home-manager/issues/322#issuecomment-1856128020