OSShells, refactor shells to single option

This commit is contained in:
Julia Lange 2024-11-29 01:53:13 -08:00
parent 7919d19fe9
commit f53b6d0ded
7 changed files with 54 additions and 57 deletions

View file

@ -0,0 +1,7 @@
{ config, lib, ... }:
{
config = lib.mkIf (config.shell.defaultShell == "fish") {
programs.fish.enable = true;
};
}