232 current 2024-10-25 12:10:10 24.05.20241019.a9b86fc 6.11.4 *

This commit is contained in:
Ranomier 2024-10-25 12:10:16 +02:00
parent d312b9e299
commit 58ada4c0cd
4 changed files with 75 additions and 68 deletions

View file

@ -1,6 +1,5 @@
{
pkgs,
overlays,
inputs,
...
}: {
@ -16,9 +15,32 @@
# Allow unfree packages
#unstable.config.allowUnfree = true;
nixpkgs.config.allowUnfree = true;
#nixpkgs.overlays = [ overlays.unstable-packages ];
nixpkgs = {
# You can add overlays here
overlays = with inputs.self.overlays; [
# Add overlays your own flake exports (from overlays and pkgs dir):
#additions
#modifications
unstable-packages
# You can also add overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
};
};
nix.settings.experimental-features = ["nix-command" "flakes"];