We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d512848 commit cf8da3aCopy full SHA for cf8da3a
flake.nix
@@ -30,6 +30,7 @@
30
./configuration.nix
31
./modules/sysconf.nix
32
inputs.home-manager.nixosModules.default
33
+ (import "${self}/pkgs/overlays.nix" { inherit inputs; })
34
]
35
++ prop.modules;
36
};
pkgs/overlays.nix
@@ -0,0 +1,16 @@
1
+{ inputs, ... }:
2
+let
3
+ pkgs-unstable = _: prev: {
4
+ pkgs-unstable = import (inputs.nixpkgs-unstable) {
5
+ inherit (prev.stdenv) system;
6
+ };
7
8
+in
9
+{
10
+ nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
11
+ nixpkgs = {
12
+ overlays = [
13
+ pkgs-unstable
14
+ ];
15
16
+}
0 commit comments