mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 18:34:56 +08:00
9 lines
194 B
Nix
9 lines
194 B
Nix
{ stdenvNoCC, ... }:
|
|
stdenvNoCC.mkDerivation {
|
|
name = "custom-colorschemes";
|
|
src = ./colorSchemes;
|
|
installPhase = ''
|
|
mkdir -p $out/share/themes
|
|
cp *.yaml $out/share/themes
|
|
'';
|
|
}
|