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;
|
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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue