diff options
Diffstat (limited to 'modules/options.nix')
-rw-r--r-- | modules/options.nix | 19 |
1 files changed, 0 insertions, 19 deletions
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; - }; } |