From 97bfde2edb0cc5a6fb8290a9699575b3d656a8dc Mon Sep 17 00:00:00 2001
From: Myned <dev@bjork.tech>
Date: Thu, 20 Feb 2025 19:48:09 -0600
Subject: [PATCH] hm: remove extraneous nixpkgs config

Signed-off-by: Myned <dev@bjork.tech>
---
 configuration.nix | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/configuration.nix b/configuration.nix
index 419101f..f99f383 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -181,7 +181,6 @@
         # Inherit from user
         programs.home-manager.enable = config.home-manager.users.${config.custom.username}.programs.home-manager.enable;
         systemd.user.startServices = config.home-manager.users.${config.custom.username}.systemd.user.startServices;
-        nixpkgs.config = config.home-manager.users.${config.custom.username}.nixpkgs.config;
         nix.gc = config.home-manager.users.${config.custom.username}.nix.gc;
 
         home = {
@@ -195,9 +194,6 @@
         programs.home-manager.enable = true;
         systemd.user.startServices = "sd-switch"; # Start/stop user services immediately
 
-        # Inherit configuration.nix
-        nixpkgs.config = config.nixpkgs.config;
-
         nix.gc = {
           automatic = config.nix.gc.automatic;
           frequency = config.nix.gc.dates;