mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:46:50 +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";
|
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;
|
||||||
|
|
Loading…
Reference in a new issue