This commit is contained in:
Satria 2026-02-15 09:24:09 +07:00
commit 4ac9491466
2 changed files with 11 additions and 9 deletions

View file

@ -21,12 +21,14 @@
autocd = true; autocd = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
envExtra = '' envExtra = ''
NIXPKGS_ALLOW_UNFREE=1 export NIXPKGS_ALLOW_UNFREE=1
WINEPREFIX="~/.wine" export NIXPKGS_ALLOW_INSECURE=1
WINEARCH="win64" export NH_FLAKE=${flake-path}
DISPLAY=":0" export WINEPREFIX="~/.wine"
EDITOR="nvim" export WINEARCH="win64"
PORT="3000" export DISPLAY=":0"
export EDITOR="nvim"
export PORT="3000"
''; '';
shellAliases = { shellAliases = {
"cd-gvfs" = "cd /run/user/$(id -u)/gvfs"; "cd-gvfs" = "cd /run/user/$(id -u)/gvfs";

View file

@ -258,9 +258,9 @@
font-weight: normal; font-weight: normal;
} }
.critical, .muted, .performance { color: @red; } .critical, .muted, .performance { border-color: @red; color: @red; }
.warning, .urgent, .disabled, .disconnected, .paused { color: @yellow; } .warning, .urgent, .disabled, .disconnected, .paused { border-color: @yellow; color: @yellow; }
.charging, .plugged, .power-saver { color: @green; } .charging, .plugged, .power-saver { border-color: @green; color: @green; }
''; '';
}; };
} }