somewhat sane nix-rice

This commit is contained in:
atagen 2023-05-21 02:03:10 +10:00
parent 60a15031a9
commit e7f8d0bed3
5 changed files with 60 additions and 48 deletions

View file

@ -1,6 +1,8 @@
{pkgs, ...}: {
hyprland-system76-scheduler-integration = pkgs.callPackage ./hyprland-system76-scheduler-integration.nix {};
culr = pkgs.callPackage ./culr.nix {};
gruvbox-kvantum = pkgs.callPackage ./gruvbox-kvantum.nix {};
gruvbox-gtk-theme = pkgs.callPackage ./gruvbox-gtk-theme.nix {};
# system76-scheduler = pkgs.callPackage ./system76-scheduler.nix {};
# swayosd = pkgs.callPackage ./swayosd.nix {};
# fuzzel = pkgs.callPackage ./fuzzel.nix {};

View file

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
owner = "Fausto-Korpsvart";
repo = "Gruvbox-GTK-Theme";
rev = "5927e8693a70619b45fbe3317c59f04f6e101943";
sha256 = lib.fakeSha256;
sha256 = "sha256-zvByW7wqVl4A5bKlVsJOSmyqkJiaHvciwSit3K/FqRM=";
};
buildInputs = [

View file

@ -11,12 +11,13 @@ stdenv.mkDerivation rec {
owner = "thefallnn";
repo = "Gruvbox-Kvantum";
rev = "b04c6b67a4228c2b980821a0f0531bfe122c4aac";
sha256 = lib.fakeSha256;
sha256 = "sha256-hFqqd39lGEnikM8+4MXwnNmZvQzhKOjFThrqx3q2lbo=";
};
installPhase = ''
runHook preInstall
cp -a gruvbox-kvantum/ $out/
sed -i 's/translucent_windows=true/translucent_windows=false/' $out/gruvbox-kvantum.kvconfig
runHook postInstall
'';
}