mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2026-01-07 00:02:50 +00:00
feat: integrate system config
This commit is contained in:
21
home/packages/firefox-gnome-theme-installer.nix
Normal file
21
home/packages/firefox-gnome-theme-installer.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
pkgs,
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "firefox-gnome-theme";
|
||||
version = "116.0.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "rafaelmardojai";
|
||||
repo = "firefox-gnome-theme";
|
||||
sparseCheckout = ["scripts"];
|
||||
rev = "v116";
|
||||
sha256 = "0IS5na2WRSNWNygHhmZOcXhdrx2aFhCDQY8XVVeHf8Q=";
|
||||
};
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp scripts/install-by-curl.sh $out/bin/install-firefox-gnome-theme
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user