Add logseq to desktop installs
This commit is contained in:
parent
b9ce9f2609
commit
714723c6eb
2 changed files with 6 additions and 4 deletions
|
@ -135,8 +135,6 @@
|
|||
config.allowUnfree = unfree;
|
||||
hostPlatform = system;
|
||||
};
|
||||
# For Logseq / Obsidian
|
||||
nixpkgs.config.permittedInsecurePackages = [ "electron-27.3.11" ];
|
||||
};
|
||||
|
||||
modules = [
|
||||
|
@ -165,12 +163,16 @@
|
|||
pkgs = import inputs.${repo} {
|
||||
inherit system;
|
||||
config.allowUnfree = unfree;
|
||||
# For Logseq / Obsidian
|
||||
config.permittedInsecurePackages = [ "electron-27.3.11" ];
|
||||
hostPlatform = system;
|
||||
};
|
||||
# Some packages (ie, Vintage Story) I want to keep on unstable no matter what default repo I use
|
||||
pkgs-unstable = import inputs.nixpkgs-unstable {
|
||||
inherit system;
|
||||
config.allowUnfree = unfree;
|
||||
# For Logseq / Obsidian
|
||||
config.permittedInsecurePackages = [ "electron-27.3.11" ];
|
||||
hostPlatform = system;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue