feat: add obsidian to candlekeep

This commit is contained in:
gwg313 2024-02-06 01:15:40 -05:00
parent 4a794c6727
commit a049042bb6
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-24.8.6"
];
};
home.packages = with pkgs; [obsidian-wayland];
}