feat: add unstable nixpkgs overlay

This commit is contained in:
Julien Hémono 2024-08-07 19:01:00 +02:00
parent fcf66bf672
commit c4be4abdeb
4 changed files with 39 additions and 3 deletions

View file

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, inputs, ... }:
{ config, lib, pkgs, inputs, outputs, ... }:
{
imports =
@ -43,6 +43,7 @@
config.allowUnfree = true;
overlays = [
inputs.nix-vscode-extensions.overlays.default
outputs.overlays.unstable-packages
];
};