diff --git a/flake.nix b/flake.nix index d4f7b40..1b8230e 100644 --- a/flake.nix +++ b/flake.nix @@ -27,8 +27,9 @@ nixosModules.macos = { ... }: { imports = [ - ./system/macos/system.nix + ./system/macos/environment.nix ./system/macos/fonts.nix + ./system/macos/system.nix ]; }; diff --git a/system/macos/environment.nix b/system/macos/environment.nix new file mode 100644 index 0000000..a68cc65 --- /dev/null +++ b/system/macos/environment.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: +{ + # Manage /etc/shells and place add nix version of bash + environment.shells = [ pkgs.bash ]; +}