add xresources and switch to st
This commit is contained in:
parent
8a9d0fb95b
commit
1977d6cce2
1 changed files with 22 additions and 14 deletions
|
@ -5,24 +5,32 @@
|
|||
gnome.gnome-software
|
||||
adw-gtk3
|
||||
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 = {
|
||||
enable = true;
|
||||
profile = {
|
||||
default = {
|
||||
default = true;
|
||||
font = "FiraCode Nerd Font Mono";
|
||||
visibleName = "Default";
|
||||
};
|
||||
};
|
||||
};
|
||||
xresources.extraConfig = builtins.readFile (
|
||||
pkgs.fetchFromGitHub {
|
||||
owner = "catppuccin";
|
||||
repo = "xresources";
|
||||
rev = "d82c02323e05158ad35f302771e3695affafab78";
|
||||
sha256 = "0n6lcn44ih8hqibx470djjns9c7glmnllfrda207wk6w7cz51d4a";
|
||||
}
|
||||
+ "/macchiato.Xresources"
|
||||
);
|
||||
|
||||
programs.firefox.enable = true;
|
||||
programs.firefox.package = pkgs.firefox.override {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
package = pkgs.firefox.override {
|
||||
cfg = {
|
||||
enableGnomeExtensions = true;
|
||||
enableTridactylNative = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Reference in a new issue