Harald Hoyer
6416f5b8db
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.
19 lines
242 B
Nix
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;
|
|
}
|