From 48bdbe9fb81e4d37e2196001e61a0234a068ab2b Mon Sep 17 00:00:00 2001 From: Alexandre1a Date: Mon, 29 Dec 2025 19:29:39 +0100 Subject: [PATCH] Fixed a typo --- hosts/macos/configuration.nix | 7 ++++++- hosts/macos/home.nix | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/hosts/macos/configuration.nix b/hosts/macos/configuration.nix index 5e4d2f1..62c9103 100644 --- a/hosts/macos/configuration.nix +++ b/hosts/macos/configuration.nix @@ -63,7 +63,12 @@ # Flakes nix.settings.experimental-features = [ "nix-command" "flakes" ]; # Target arch - nixpkgs.hostPlatform = "aarch64-darwin"; + nixpkgs = { + hostPlatform = "aarch64-darwin"; + config = { + allowUnfree = true; + }; + }; # Nix-Darwin State Version system = { stateVersion = 6; diff --git a/hosts/macos/home.nix b/hosts/macos/home.nix index 09c09c0..b369845 100644 --- a/hosts/macos/home.nix +++ b/hosts/macos/home.nix @@ -8,7 +8,7 @@ home.stateVersion = "25.11"; # Allow unfree packages - nixpkgs.config.allowUnfree = true; + #nixpkgs.config.allowUnfree = true; home.packages = with pkgs; [ # Window management (maybe configure it with home-manager)