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 signal-desktop
pavucontrol pavucontrol
vscodium-fhs vscodium-fhs
obsidian obsidian-wayland
supersonic-wayland supersonic-wayland
jellyfin-mpv-shim jellyfin-mpv-shim
unzip unzip

View file

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

View file

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