diff options
author | Alan Pearce | 2024-06-18 09:31:01 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-18 09:31:01 +0200 |
commit | bd10447989c1695323e33c75bdbd9dd4ebcbd8aa (patch) | |
tree | 69cfb20a747909478f76996f61a1035222ce454d | |
parent | fee4f95d4c0746d478ef3fbfb40c1b1d83f5b305 (diff) | |
download | nixfiles-bd10447989c1695323e33c75bdbd9dd4ebcbd8aa.tar.lz nixfiles-bd10447989c1695323e33c75bdbd9dd4ebcbd8aa.tar.zst nixfiles-bd10447989c1695323e33c75bdbd9dd4ebcbd8aa.zip |
update sources
-rw-r--r-- | npins/sources.json | 4 | ||||
-rw-r--r-- | user/config.nix | 3 | ||||
-rw-r--r-- | user/settings/user-interface.nix | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/npins/sources.json b/npins/sources.json index 8cc7f833..d52d39d6 100644 --- a/npins/sources.json +++ b/npins/sources.json @@ -75,8 +75,8 @@ "nixpkgs": { "type": "Channel", "name": "nixos-unstable", - "url": "https://releases.nixos.org/nixos/unstable/nixos-24.11pre639108.e9ee548d90ff/nixexprs.tar.xz", - "hash": "1k9cdvanlvx2pmglx600mg0ly6fxwbgac95yrchm4jyhyamv3ifv" + "url": "https://releases.nixos.org/nixos/unstable/nixos-24.11pre639882.b60ebf54c155/nixexprs.tar.xz", + "hash": "1b8g3m87364ch51ziwq47i5dhlhpd34ym20pwpg24iaxqdsa5jc2" }, "nur": { "type": "Git", diff --git a/user/config.nix b/user/config.nix index c12a0bb1..c98bb405 100644 --- a/user/config.nix +++ b/user/config.nix @@ -2,4 +2,7 @@ allowUnfree = true; allowUnfreePredicate = pkg: true; input-fonts.acceptLicense = true; + permittedInsecurePackages = [ + "electron-27.3.11" # for logseq 0.10.9 + ]; } diff --git a/user/settings/user-interface.nix b/user/settings/user-interface.nix index 13264e11..762033a0 100644 --- a/user/settings/user-interface.nix +++ b/user/settings/user-interface.nix @@ -44,7 +44,7 @@ in }) ] ++ lib.optionals (!stdenv.isDarwin) (with pkgs; [ - logseq + logseq # 0.10.9 is insecure, see ../config.nix (discord.override { withOpenASAR = true; }) falkon |