mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 17:56:51 +01:00
Build icon theme from src
This commit is contained in:
parent
d3c89ab4be
commit
07d34a6218
1 changed files with 13 additions and 1 deletions
14
flake.nix
14
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;
|
||||
|
|
Loading…
Reference in a new issue