Added NUR overlay

This commit is contained in:
marc
2022-11-25 16:34:57 +01:00
parent 23e0c5a9c8
commit ebbbd0d179
11 changed files with 86 additions and 18 deletions

View File

@@ -3,15 +3,22 @@
inputs = {
# - Nixpkgs ----------------------------------
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05";
# - Home-Manager -----------------------------
home-manager.url = "github:nix-community/home-manager/release-22.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-colors.url = "github:misterio77/nix-colors";
# - NUR --------------------------------------
nur.url = "github:nix-community/NUR";
# - Overlays ---------------------------------
emacs-overlay.url = "github:nix-community/emacs-overlay";
# - Themeing ---------------------------------
nix-colors.url = "github:misterio77/nix-colors";
};
outputs = inputs @ { self, nixpkgs, home-manager, ... }:
@@ -21,7 +28,7 @@
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = import ./overlays;
overlays = import ./overlays { inherit inputs; };
};
lib = nixpkgs.lib.extend