Use Nix release directly instead of overlaying against nixpkgs
This commit is contained in:
parent
948ae3f80f
commit
f56e3e8430
@ -73,8 +73,6 @@
|
|||||||
inputs.devshell.overlay
|
inputs.devshell.overlay
|
||||||
inputs.agenix.overlay
|
inputs.agenix.overlay
|
||||||
inputs.deploy-rs.overlay
|
inputs.deploy-rs.overlay
|
||||||
# TODO: This causes a compile from source which is pretty unnecessary
|
|
||||||
inputs.nix.overlay
|
|
||||||
(flakePackageOverlay inputs.home-manager-unstable system)
|
(flakePackageOverlay inputs.home-manager-unstable system)
|
||||||
];
|
];
|
||||||
}))
|
}))
|
||||||
|
@ -87,7 +87,7 @@ in
|
|||||||
# Note: If globalPkgs mode is on, then these will be overridden by the NixOS equivalents of these options
|
# Note: If globalPkgs mode is on, then these will be overridden by the NixOS equivalents of these options
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
overlays = [
|
overlays = [
|
||||||
inputs.nix.overlay
|
(final: prev: { nix = inputs.nix.defaultPackage.${config.nixpkgs.system}; })
|
||||||
# TODO: Wait for https://github.com/NixOS/nixpkgs/pull/159074 to arrive to nixos-unstable
|
# TODO: Wait for https://github.com/NixOS/nixpkgs/pull/159074 to arrive to nixos-unstable
|
||||||
(final: prev: { remarshal = pkgs'.master.remarshal; })
|
(final: prev: { remarshal = pkgs'.master.remarshal; })
|
||||||
];
|
];
|
||||||
|
@ -62,7 +62,7 @@ in
|
|||||||
};
|
};
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
overlays = [
|
overlays = [
|
||||||
inputs.nix.overlay
|
(final: prev: { nix = inputs.nix.defaultPackage.${config.nixpkgs.system}; })
|
||||||
];
|
];
|
||||||
config = {
|
config = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user