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