config.nix/system/shell.nix

15 lines
190 B
Nix

{ config, pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
fish
coreutils
];
};
# programs = {
# fish = {
# enable = true;
# };
# };
}