1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-13 16:51:02 +00:00
ncc/modules/linux/shell/default.nix
2025-07-19 21:02:03 +03:00

9 lines
249 B
Nix

{ config, lib, pkgs, ... }: let
inherit (lib) concatStringsSep;
in {
users.defaultUserShell = pkgs.crash;
environment.sessionVariables.SHELLS = config.shellsByPriority
|> map (drv: "${drv}${drv.shellPath}")
|> concatStringsSep ":";
}