Alacrity + kitty now managed by nix + stylix!

This commit is contained in:
Emmet 2023-05-14 20:53:56 -05:00
parent 8f505cff9c
commit 64a805295e
4 changed files with 24 additions and 2 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
alacritty
];
programs.alacritty.enable = true;
programs.alacritty.settings = {
window.opacity = 0.9;
};
}

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
kitty
];
programs.kitty.enable = true;
programs.kitty.settings = {
background_opacity = "0.9";
};
}

View file

@ -12,6 +12,8 @@
./wm/xmonad/xmonad.nix # My xmonad config
./shell/sh.nix # My zsh and bash config
./bin/phoenix.nix # My nix command wrapper
./app/terminal/alacritty.nix # My alacritty config
./app/terminal/kitty.nix # My kitty config
./app/git/git.nix # My git config
./app/games/games.nix # Various videogame apps
./style/stylix.nix # Styling and themes for my apps

View file

@ -40,9 +40,7 @@ in
};
stylix.targets.alacritty.enable = true;
#programs.alacritty.enable = true;
stylix.targets.kitty.enable = true;
#programs.kitty.enable = true;
stylix.targets.gtk.enable = true;
stylix.targets.rofi.enable = true;
programs.rofi.enable = true;