Skip to content
Snippets Groups Projects
Commit 59a309aa authored by Jens Nolte's avatar Jens Nolte
Browse files

Add home-manager

parent 57cf1f5b
No related branches found
No related tags found
No related merge requests found
# This is the entry point for my NixOS configuration.
{ name, path, channel, isIso, extraLayersDir }:
{ name, path, channel, isIso, extraLayersDir, flakeInputs, flakeOutputs }:
{ lib, config, pkgs, ... }:
let
......@@ -44,8 +44,15 @@ in
./modules
(path + "/configuration.nix")
normalSystemConfiguration
flakeInputs.homemanager.nixosModules.home-manager
] ++ layerImports;
home-manager = {
useGlobalPkgs = true;
# disable home-managers usage of nix-env
useUserPackages = true;
};
_module.args.isIso = lib.mkDefault false;
nixpkgs.overlays = [ (import ./pkgs) ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment