From 1be7c17d9a516523e9a424a21f8308f2bc94c47f Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Sat, 15 Feb 2025 17:31:52 +0100 Subject: [PATCH] add tela --- flake.lock | 17 +++++++++++++++++ flake.nix | 5 +++++ nixos-modules/nix/default.nix | 3 +++ 3 files changed, 25 insertions(+) diff --git a/flake.lock b/flake.lock index f3cb21e..d732f8f 100644 --- a/flake.lock +++ b/flake.lock @@ -778,6 +778,7 @@ "snm": "snm", "sops-nix": "sops-nix_2", "srvos": "srvos", + "tela": "tela", "treefmt-nix": "treefmt-nix_5" } }, @@ -915,6 +916,22 @@ "type": "github" } }, + "tela": { + "flake": false, + "locked": { + "lastModified": 1739165606, + "narHash": "sha256-ufjKFlKJnmNwD2m1w+7JSBQij6ltxXWCpUEvVxECS98=", + "owner": "vinceliuice", + "repo": "Tela-icon-theme", + "rev": "fea810d948a663f336060b97db556274af3fc7c7", + "type": "github" + }, + "original": { + "owner": "vinceliuice", + "repo": "Tela-icon-theme", + "type": "github" + } + }, "treefmt-nix": { "inputs": { "nixpkgs": [ diff --git a/flake.nix b/flake.nix index 6fed9f5..e9dea04 100644 --- a/flake.nix +++ b/flake.nix @@ -54,6 +54,11 @@ inputs.nixpkgs.follows = "nixpkgs"; }; + tela = { + url = "github:vinceliuice/Tela-icon-theme"; + flake = false; + }; + # Utility nixos-anywhere = { url = "github:nix-community/nixos-anywhere"; diff --git a/nixos-modules/nix/default.nix b/nixos-modules/nix/default.nix index 9359bae..aa8fe5b 100644 --- a/nixos-modules/nix/default.nix +++ b/nixos-modules/nix/default.nix @@ -127,6 +127,9 @@ in (_self: super: rec { firefox-addons = self.inputs.firefox-addons.packages.${config.nixpkgs.hostPlatform.system}; localPkgs = self.outputs.packages.${config.nixpkgs.hostPlatform.system}; + tela-icon-theme = super.tela-icon-theme.overrideAttrs { + src = self.inputs.tela; + }; }) ]; };