19 lines
330 B
Nix
19 lines
330 B
Nix
|
{ inputs, outputs, config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nixpkgs = {
|
||
|
overlays = [
|
||
|
outputs.overlays.additions
|
||
|
outputs.overlays.modifications
|
||
|
];
|
||
|
config = {
|
||
|
allowUnfree = true;
|
||
|
allowUnfreePredicate = (_: true);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
imports = [ outputs.homeManagerModules.common ];
|
||
|
|
||
|
home.stateVersion = "23.05";
|
||
|
}
|