1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Fix crash, garnix cached wrongly / build wrongly for some reason?

This commit is contained in:
RGBCube 2024-05-15 15:54:47 +03:00
parent 52f2f7eb05
commit f636857d4e
No known key found for this signature in database

View file

@ -1,14 +1,8 @@
{ config, lib, pkgs, ... }: with lib; merge
(systemConfiguration {
users.defaultUserShell = pkgs.crash;
environment.sessionVariables.SHELLS = pipe [
pkgs.nushellFull
pkgs.fish
] [
(map getExe)
(concatStringsSep ":")
];
users.defaultUserShell = pkgs.crash.override { fallbackShell = pkgs.fish; };
environment.sessionVariables.SHELLS = lib.getExe pkgs.nushellFull;
environment.shellAliases = {
la = "ls --all";