Added NUR overlay
This commit is contained in:
11
flake.nix
11
flake.nix
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user