From 91a1aa83f7b382b3ce56bcae71b2e0f23c9ab291 Mon Sep 17 00:00:00 2001 From: Timo Bingmann Date: Sun, 21 Sep 2025 09:19:07 -0700 Subject: [PATCH] macos/system: add shells --- flake.nix | 3 ++- system/macos/environment.nix | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 system/macos/environment.nix 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 ]; +}