overrides: move to extern
This commit is contained in:
parent
f254304796
commit
e13a65b33c
3 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
# Overrides
|
||||
By default, the NixOS systems are based on the latest release. While it is
|
||||
trivial to change this to nixos-unstable or any other branch of nixpkgs by
|
||||
By default, the NixOS systems are based on unstable. While it is trivial to
|
||||
change this to a stable release, or any other branch of nixpkgs by
|
||||
changing the flake url, sometimes all we want is a single package from another
|
||||
branch.
|
||||
|
||||
|
@ -8,6 +8,7 @@ This is what the overrides are for. By default, they are pulled directly from
|
|||
nixpkgs/master, but you can change the `override` flake input url to
|
||||
nixos-unstable, or even a specific sha revision.
|
||||
|
||||
They are defined in the `extern/overrides.nix` file.
|
||||
|
||||
## Example
|
||||
|
||||
|
|
0
overrides/default.nix → extern/overrides.nix
vendored
0
overrides/default.nix → extern/overrides.nix
vendored
|
@ -39,7 +39,7 @@
|
|||
packages = import ./pkgs;
|
||||
suites = import ./suites;
|
||||
extern = import ./extern;
|
||||
overrides = import ./overrides;
|
||||
overrides = import ./extern/overrides.nix;
|
||||
overlays = ./overlays;
|
||||
profiles = ./profiles;
|
||||
userProfiles = ./users/profiles;
|
||||
|
|
Loading…
Reference in a new issue