Build icon theme from src

This commit is contained in:
Johannes Jöns 2023-05-19 21:51:53 +02:00
parent d3c89ab4be
commit 07d34a6218

View file

@ -13,6 +13,10 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixos-hardware.url = github:NixOS/nixos-hardware; nixos-hardware.url = github:NixOS/nixos-hardware;
tela-icon-theme = {
url = "github:vinceliuice/Tela-icon-theme";
flake = false;
};
}; };
outputs = inputs@{ outputs = inputs@{
@ -49,7 +53,15 @@
{ {
nixpkgs = { nixpkgs = {
config.allowUnfree = true; config.allowUnfree = true;
overlays = [ prismlauncher.overlays.default nur.overlay ]; overlays = [
prismlauncher.overlays.default
nur.overlay
(self: super: {
tela-icon-theme = super.tela-icon-theme.overrideAttrs (old: {
src = inputs.tela-icon-theme;
});
})
];
}; };
home-manager = { home-manager = {
useGlobalPkgs = true; useGlobalPkgs = true;