nix flake update

Allows insecure package jitsi-meet (see https://github.com/NixOS/nixpkgs/pull/334638)
This commit is contained in:
Gonne 2024-09-27 18:33:58 +02:00
parent 575343c844
commit 0550754cdd
2 changed files with 32 additions and 27 deletions

View file

@ -15,6 +15,7 @@
perSystem = {
config,
pkgs,
system,
...
}: {
devShells.default = config.pre-commit.devShell;
@ -49,6 +50,10 @@
# Per-system attributes can be defined here. The self' and inputs'
# module parameters provide easy access to attributes of the same
# system.
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
config.permittedInsecurePackages = ["jitsi-meet-1.0.8043"];
};
};
# Equivalent to inputs'.nixpkgs.legacyPackages.hello;