mirror of
https://github.com/sstent/vmimages.git
synced 2025-12-06 06:01:51 +00:00
26 lines
556 B
Nix
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;
|
|
};
|
|
} |