Add icon theme
This commit is contained in:
parent
9df715f74e
commit
ef69f9943a
3 changed files with 21 additions and 0 deletions
18
nixos/overlays/icosystem/default.nix
Normal file
18
nixos/overlays/icosystem/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
final: prev: {
|
||||
icosystem = final.stdenv.mkDerivation {
|
||||
name = "icosystem";
|
||||
version = "v1.0.0";
|
||||
src = final.fetchFromGitea {
|
||||
domain = "git.depeuter.dev";
|
||||
owner = "tdpeuter";
|
||||
repo = "icosystem";
|
||||
rev = "ca565dc36d";
|
||||
hash = "sha256-GJu0APTkrsFH981Y1RBedOnvVJ5Z79w2WPcLkrc8CH0=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/icons
|
||||
cp -R $src $out/share/icons/icosystem
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue