Compare commits

..

2 commits

Author SHA1 Message Date
5486bc608d
tsuki: readd signal and obsidian
All checks were successful
flake check / check (push) Successful in 4m43s
fmt check / check (push) Successful in 43s
2023-12-23 16:29:22 -05:00
395f406973
nix: allow electron-25.9.0 2023-12-23 16:29:10 -05:00
2 changed files with 8 additions and 1 deletions

View file

@ -31,8 +31,10 @@
cinny-desktop
thunderbird
obs-studio
signal-desktop
pavucontrol
vscode-fhs
obsidian
unzip
unrar
p7zip

View file

@ -1,7 +1,12 @@
{...}: {
{
lib,
pkgs,
...
}: {
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = lib.optional (pkgs.obsidian.version == "1.4.16") "electron-25.9.0";
};
};