NixOS configuration 馃獎
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at refactor/style 19 lines 488 B view raw
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}