config.nix/system/shell.nix
2025-12-18 13:30:28 +01:00

10 lines
139 B
Nix

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