9 lines
203 B
Nix
9 lines
203 B
Nix
# Advanced user profile (computer scientists, developers, admins)
|
|
|
|
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{ shell = lib.mkIf config.programs.zsh.enable pkgs.zsh; } // import ./minimal.nix { inherit pkgs; }
|