From 07d34a6218f30575da7b774479f5e84afb974633 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 19 May 2023 21:51:53 +0200 Subject: [PATCH] Build icon theme from src --- flake.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 2ae8fb0..e5bbf84 100644 --- a/flake.nix +++ b/flake.nix @@ -13,6 +13,10 @@ inputs.nixpkgs.follows = "nixpkgs"; }; nixos-hardware.url = github:NixOS/nixos-hardware; + tela-icon-theme = { + url = "github:vinceliuice/Tela-icon-theme"; + flake = false; + }; }; outputs = inputs@{ @@ -49,7 +53,15 @@ { nixpkgs = { 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 = { useGlobalPkgs = true;