config.nix/system/shell.nix

15 lines
180 B
Nix

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