14 lines
147 B
Nix
14 lines
147 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
programs.fish = {
|
|
enable = true;
|
|
};
|
|
|
|
users.users.philipp = {
|
|
isNormalUser = true;
|
|
shell = pkgs.fish;
|
|
};
|
|
}
|