migrates system shell
This commit is contained in:
parent
e72a052384
commit
eaaaf14d1e
2 changed files with 22 additions and 0 deletions
18
modules/shell/default.nix
Normal file
18
modules/shell/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue