Files
vmimages/home-manager/global/default.nix
2023-02-25 14:11:26 +00:00

26 lines
556 B
Nix

{ inputs, lib, pkgs, config, outputs, ... }:
{
imports = [
] ++ (builtins.attrValues outputs.homeManagerModules);
nixpkgs = {
overlays = builtins.attrValues outputs.overlays;
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
nix = {
package = lib.mkDefault pkgs.nix;
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
warn-dirty = false;
};
};
programs = {
home-manager.enable = true;
git.enable = true;
};
}