diff --git a/modules/nix.nix b/modules/nix.nix index 2695a29..ae72d54 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -1,7 +1,12 @@ -{...}: { +{ + lib, + pkgs, + ... +}: { nixpkgs = { config = { allowUnfree = true; + permittedInsecurePackages = lib.optional (pkgs.obsidian.version == "1.4.16") "electron-25.9.0"; }; };