1
0
Fork 0
forked from foxora/nix

added alacritty, foot doesnt support dynamic themeing :c

This commit is contained in:
foxora 2026-02-23 19:33:14 +00:00
parent cf5b772204
commit 79af2ce80f
11 changed files with 184 additions and 137 deletions

View file

@ -7,7 +7,8 @@
root,
system,
...
}: {
}:
{
imports = [
inputs.zen.homeModules.twilight
@ -68,7 +69,8 @@
fonts.fontconfig.enable = true;
home.file.".mozilla/native-messaging-hosts/tridactyl.json".source = "${upkgs.tridactyl-native}/lib/mozilla/native-messaging-hosts/tridactyl.json";
home.file.".mozilla/native-messaging-hosts/tridactyl.json".source =
"${upkgs.tridactyl-native}/lib/mozilla/native-messaging-hosts/tridactyl.json";
# some packages are enabled from their own module in ./modules
home.packages = with upkgs; [
@ -91,7 +93,7 @@
ripgrep # rlly fast grep :3
zip # zips .zip
unzip # unzips .zip
(btop.override {rocmSupport = true;}) # btop + amd gpu support
(btop.override { rocmSupport = true; }) # btop + amd gpu support
nmap # network discovery and mapping tool!
distrobox # use any linux distro inside ur terminal x3
parted # create, resize, copy, image partitions
@ -291,6 +293,22 @@
};
};
alacritty = {
enable = true;
package = upkgs.alacritty-graphics;
settings = {
general.import = [
"theme.toml"
];
font = {
normal.family = "DepartureMono Nerd Font Mono";
size = 10;
};
scrolling.history = 100000;
};
};
zen-browser = {
enable = true;
package = inputs.zen.packages.${system}.twilight;