Add icon theme
This commit is contained in:
parent
9df715f74e
commit
ef69f9943a
3 changed files with 21 additions and 0 deletions
|
@ -40,6 +40,7 @@
|
|||
|
||||
sharedOverlays = [
|
||||
(import ./overlays/letter)
|
||||
(import ./overlays/icosystem)
|
||||
];
|
||||
|
||||
hostDefaults = {
|
||||
|
|
|
@ -58,6 +58,8 @@
|
|||
|
||||
packages = with pkgs; [
|
||||
gnupg
|
||||
|
||||
icosystem
|
||||
];
|
||||
};
|
||||
|
||||
|
|
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…
Reference in a new issue