mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-05 04:29:23 +02:00
14 lines
287 B
Nix
14 lines
287 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
system,
|
|
}:
|
|
|
|
rec {
|
|
libadwaita-follow-theme = pkgs.libadwaita.overrideAttrs (old: {
|
|
patches = (old.patches or [ ]) ++ [ ./adwaita-theming-support.patch ];
|
|
doCheck = false;
|
|
});
|
|
|
|
nixos-anywhere = inputs.nixos-anywhere.packages.${system}.nixos-anywhere;
|
|
}
|