From fcd428ba73f1d2180d443083db346f7c1130f8f8 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 22 Jul 2025 20:58:46 -0400 Subject: refactor config out of modules/options.nix --- modules/options.nix | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'modules') diff --git a/modules/options.nix b/modules/options.nix index bfc61e3..0c7b78f 100644 --- a/modules/options.nix +++ b/modules/options.nix @@ -387,23 +387,4 @@ in { default = []; }; }; - - config = { - # allow flakes - nix.settings.experimental-features = ["nix-command" "flakes"]; - - # use system packages in home manager - home-manager.useGlobalPkgs = true; - - # install user packages to /etc/profiles and not home directory - home-manager.useUserPackages = true; - - # allow unfree packages - nixpkgs.config.allowUnfree = true; - - # set state version - home-manager.users.${config.user}.home.stateVersion = config.stateVersion; - home-manager.users.root.home.stateVersion = config.stateVersion; - system.stateVersion = config.stateVersion; - }; } -- cgit v1.2.3-freya