config.nix/modules/system/shell.nix
2026-03-30 22:03:03 +02:00

15 lines
216 B
Nix

{ config, pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
coreutils
util-linux
];
};
programs = {
fish.enable = true;
bash.enable = true;
zsh.enable = true;
};
}