1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Suppress starship warn logs

This commit is contained in:
RGBCube 2024-07-02 12:51:48 +03:00
parent 4a3ac9999d
commit a289c8f569
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -1,8 +1,13 @@
{ config, lib, pkgs, ... }: with lib; merge
(systemConfiguration {
users.defaultUserShell = pkgs.crash;
environment.sessionVariables.SHELLS = lib.getExe pkgs.nushell;
users.defaultUserShell = pkgs.crash;
environment.sessionVariables = {
SHELLS = lib.getExe pkgs.nushell;
STARSHIP_LOG = "error";
};
environment.shellAliases = {
la = "ls --all";