[Packages+Overlays] Remove impure unstable + nur overlays, disable vdhcoapp

This commit is contained in:
Antoine Viallon 2023-03-31 21:43:30 +02:00
parent a10d1be23b
commit 6bd20a7600
Signed by: aviallon
GPG key ID: 186FC35EDEB25716
4 changed files with 3 additions and 31 deletions

View file

@ -1,28 +0,0 @@
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.aviallon.overlays;
hardwareCfg = config.aviallon.hardware;
unstable = import (fetchGit {
url = "https://github.com/NixOS/nixpkgs.git";
ref = "nixos-unstable";
}) {
config = config.nixpkgs.config // { allowUnfree = true; } ;
overlays = config.nixpkgs.overlays;
};
nur = import (fetchGit {
url = "https://github.com/nix-community/NUR.git";
ref = "master";
}) {
inherit pkgs;
};
in {
config = {
nixpkgs.overlays = mkBefore ([]
++ [(final: prev: {
inherit nur;
inherit unstable;
})]
);
};
}