Compare commits

...

3 commits

Author SHA1 Message Date
f2efe0226b
home: switch to obsidian overlay
Some checks failed
flake check / check (push) Has been cancelled
fmt check / check (push) Has been cancelled
2024-01-23 13:22:37 -05:00
c31a7e804f
nix: allow electron 24 2024-01-23 13:22:27 -05:00
7f88cec2f8
overlays: add obsidian overlay 2024-01-23 13:22:21 -05:00
3 changed files with 5 additions and 2 deletions

View file

@ -34,7 +34,7 @@
signal-desktop
pavucontrol
vscodium-fhs
obsidian
obsidian-wayland
supersonic-wayland
jellyfin-mpv-shim
unzip

View file

@ -13,7 +13,7 @@
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-25.9.0"
"electron-24.8.6"
];
};
};

View file

@ -1,6 +1,9 @@
{lib, ...}: {
nixpkgs = {
overlays = [
(final: prev: {
obsidian-wayland = prev.obsidian.override {electron = final.electron_24;};
})
(final: prev: {
spotify-player = prev.spotify-player.overrideAttrs (old: rec {
pname = "spotify-player";