From 5d913650cce299d271f90f0879818bae1effd4c3 Mon Sep 17 00:00:00 2001 From: Aditya Date: Thu, 11 Apr 2024 17:51:43 +0530 Subject: [PATCH] allow non-free packages --- hosts/default/home.nix | 2 -- modules/home-manager/default.nix | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/default/home.nix b/hosts/default/home.nix index e550c72..22c63f5 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -25,8 +25,6 @@ # release notes. home.stateVersion = "22.11"; # Please read the comment before changing. - # Allow non-free packages - nixpkgs.config.allowUnfree = true; nixpkgs.config.joypixels.acceptLicense = true; # Manage session variables diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index b6608a9..f43b81a 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -2,4 +2,6 @@ imports = [ ./session-vars ]; + + nixpkgs.config.allowUnfree = true; }