Archived
0
0
Fork 0

add xresources and switch to st

This commit is contained in:
Daryl Ronningen 2023-01-04 01:28:54 -08:00
parent 8a9d0fb95b
commit 1977d6cce2
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B

View file

@ -5,24 +5,32 @@
gnome.gnome-software gnome.gnome-software
adw-gtk3 adw-gtk3
numix-icon-theme-circle numix-icon-theme-circle
(st.overrideAttrs (oldAttrs: {
src = builtins.fetchTarball {
url = "https://code.relms.dev/Relms/st/archive/25ed626850a7d8cc4f854215a1cf6100278f9929.tar.gz";
sha256 = "1y6k496lvcnzpbs8fjyj45gjdiih859ab2skx93xhfl83b5zy3br";
};
buildInputs = oldAttrs.buildInputs ++ [harfbuzz xorg.libXcursor];
}))
]; ];
programs.gnome-terminal = { xresources.extraConfig = builtins.readFile (
pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "xresources";
rev = "d82c02323e05158ad35f302771e3695affafab78";
sha256 = "0n6lcn44ih8hqibx470djjns9c7glmnllfrda207wk6w7cz51d4a";
}
+ "/macchiato.Xresources"
);
programs.firefox = {
enable = true; enable = true;
profile = { package = pkgs.firefox.override {
default = { cfg = {
default = true; enableGnomeExtensions = true;
font = "FiraCode Nerd Font Mono"; enableTridactylNative = true;
visibleName = "Default";
}; };
}; };
}; };
programs.firefox.enable = true;
programs.firefox.package = pkgs.firefox.override {
cfg = {
enableGnomeExtensions = true;
enableTridactylNative = true;
};
};
} }