summaryrefslogtreecommitdiff
path: root/overlays
diff options
context:
space:
mode:
authorJakub Trzeciak <jptrzy@gmail.com>2023-10-21 11:35:42 +0200
committerJakub Trzeciak <jptrzy@gmail.com>2023-10-21 11:35:42 +0200
commit791b95cd71cc2184e7c83e8a297c808eacab2ed5 (patch)
treed30385e4bb0ed07c85b9b52100b85b05d52a76f2 /overlays
parent7a6a0f103c449d972fe8d07096ec0d5a6f506f95 (diff)
downloadnixos-791b95cd71cc2184e7c83e8a297c808eacab2ed5.tar.gz
nixos-791b95cd71cc2184e7c83e8a297c808eacab2ed5.tar.bz2
nixos-791b95cd71cc2184e7c83e8a297c808eacab2ed5.zip
Heroic Launcher 🫠
Diffstat (limited to 'overlays')
-rw-r--r--overlays/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/overlays/default.nix b/overlays/default.nix
index 3037a94..cd7a878 100644
--- a/overlays/default.nix
+++ b/overlays/default.nix
@@ -10,6 +10,15 @@ in {
# This one brings our custom packages from the 'pkgs' directory
additions = final: _prev: import ../pkgs {pkgs = final;};
+ # When applied, the unstable nixpkgs set (declared in the flake inputs) will
+ # be accessible through 'pkgs.unstable'
+ unstable-packages = final: _prev: {
+ unstable = import inputs.nixpkgs-unstable {
+ system = final.system;
+ config.allowUnfree = true;
+ };
+ };
+
# This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays
@@ -30,13 +39,4 @@ in {
] ++ old.buildInputs;
});
};
-
- # When applied, the unstable nixpkgs set (declared in the flake inputs) will
- # be accessible through 'pkgs.unstable'
- unstable-packages = final: _prev: {
- unstable = import inputs.nixpkgs-unstable {
- system = final.system;
- config.allowUnfree = true;
- };
- };
}
Software created with 💖