Add logseq to desktop installs

This commit is contained in:
albert 2024-08-13 12:53:37 +09:00
parent b9ce9f2609
commit 714723c6eb
Signed by: albert
GPG key ID: 3895DD267CA11BA9
2 changed files with 6 additions and 4 deletions

View file

@ -135,8 +135,6 @@
config.allowUnfree = unfree; config.allowUnfree = unfree;
hostPlatform = system; hostPlatform = system;
}; };
# For Logseq / Obsidian
nixpkgs.config.permittedInsecurePackages = [ "electron-27.3.11" ];
}; };
modules = [ modules = [
@ -165,12 +163,16 @@
pkgs = import inputs.${repo} { pkgs = import inputs.${repo} {
inherit system; inherit system;
config.allowUnfree = unfree; config.allowUnfree = unfree;
# For Logseq / Obsidian
config.permittedInsecurePackages = [ "electron-27.3.11" ];
hostPlatform = system; hostPlatform = system;
}; };
# Some packages (ie, Vintage Story) I want to keep on unstable no matter what default repo I use # Some packages (ie, Vintage Story) I want to keep on unstable no matter what default repo I use
pkgs-unstable = import inputs.nixpkgs-unstable { pkgs-unstable = import inputs.nixpkgs-unstable {
inherit system; inherit system;
config.allowUnfree = unfree; config.allowUnfree = unfree;
# For Logseq / Obsidian
config.permittedInsecurePackages = [ "electron-27.3.11" ];
hostPlatform = system; hostPlatform = system;
}; };
}; };