overlays: add temporary marwaita symlink fix

This commit is contained in:
Veneficium 2025-02-12 21:51:44 +01:00
parent 8b4e41c968
commit 95e2f0dcec
2 changed files with 6 additions and 0 deletions

View file

@ -48,6 +48,7 @@
nixpkgs.overlays = [ nixpkgs.overlays = [
nix-vscode-extensions.overlays.default nix-vscode-extensions.overlays.default
niri.overlays.niri niri.overlays.niri
(import ./overlays/marwaita-icons.nix)
]; ];
} }
./hosts/main-laptop/configuration.nix ./hosts/main-laptop/configuration.nix

View file

@ -0,0 +1,5 @@
(self: super: {
marwaita-icons = super.marwaita-icons.overrideAttrs ({
dontCheckForBrokenSymlinks = true;
});
})