migrates system shell

This commit is contained in:
Dennis Schoepf 2026-03-03 21:55:58 +01:00
parent e72a052384
commit eaaaf14d1e
2 changed files with 22 additions and 0 deletions

18
modules/shell/default.nix Normal file
View file

@ -0,0 +1,18 @@
{
...
}:
{
flake.modules.nixos.shell =
{ pkgs, ... }:
{
programs.fish.enable = true;
users.defaultUserShell = pkgs.fish;
};
flake.modules.darwin.shell =
{ pkgs, ... }:
{
programs.fish.enable = true;
users.defaultUserShell = pkgs.fish;
};
}