From 7eac7a0f98386e94d5fdf61b46465c1a1243ac17 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 14 Dec 2025 00:28:09 +0100 Subject: [PATCH] Fixed the packages for macos too --- hosts/macos/home.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/macos/home.nix b/hosts/macos/home.nix index 61add94..e454ad0 100644 --- a/hosts/macos/home.nix +++ b/hosts/macos/home.nix @@ -15,10 +15,10 @@ commonHome // { # Allow unfree packages nixpkgs.config.allowUnfree = true; - home.packages = with pkgs; [ + home.packages = commonHome.home.packages ++ (with pkgs; [ # Window management (maybe configure it with home-manager) yabai skhd #borders - ]; + ]); }