commit | 205aff1d5b890ab6d74be3de3802460c70ee1326 | [log] [tgz] |
---|---|---|
author | Skyler Turner <skyler@clicksminuteper.net> | Mon Dec 20 11:22:57 2021 +0000 |
committer | Skyler Turner <skyler@clicksminuteper.net> | Mon Dec 20 11:24:28 2021 +0000 |
tree | dd9575c467713a8e010adbc7c6246ddc2758bab3 | |
parent | 1c1dd5eb6e51927f137486db081e1485d443beff [diff] [blame] |
Initial commit
diff --git a/system/packaging-configuration.nix b/system/packaging-configuration.nix new file mode 100644 index 0000000..6ea58ea --- /dev/null +++ b/system/packaging-configuration.nix
@@ -0,0 +1,9 @@ +{ config, pkgs, options, ... }: { + # Apply custom packaging overlays for compatability + nix.nixPath = + # Prepend default nixPath values. + options.nix.nixPath.default ++ + # Append our nixpkgs-overlays. + [ "nixpkgs-overlays=/etc/nixos/overlays/" ] + ; +}