NixOS configuration 馃獎
1{
2 # TODO: evaluation warning (cant use nixpkgs.config when using home-manager.useGlobalPkgs)
3 nixpkgs.config = {
4 # Allowance of packages
5 allowUnfree = true;
6 allowBroken = false;
7
8 allowUnfreePredicate = _: true;
9 allowAliases = false;
10
11 # Warn me if something has no maintainer anymore (sad >:)
12 # Never mind, there are to many... for now!
13 # showDerivationWarnings = [ "maintainerless" ];
14 };
15
16 nixpkgs.overlays = [
17 (import ./overlays/mpv.nix)
18 ];
19}