nixcfg/systems/x86_64-darwin/mpro/default.nix
Harald Hoyer 6416f5b8db feat: set default shell to fish for user harald
Added configuration to set fish as the default shell for user harald. This improves user experience by providing a more friendly and powerful shell environment.
2024-11-19 08:26:05 +01:00

19 lines
242 B
Nix

{ lib, pkgs, ... }:
with lib.metacfg;
{
metacfg = {
suites = {
common = enabled;
};
};
environment.systemPath = [
"/usr/local/Homebrew/bin"
];
users.users.harald.shell = pkgs.fish;
system.stateVersion = 4;
}