mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Alacrity + kitty now managed by nix + stylix!
This commit is contained in:
parent
8f505cff9c
commit
64a805295e
11
user/app/terminal/alacritty.nix
Normal file
11
user/app/terminal/alacritty.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
alacritty
|
||||
];
|
||||
programs.alacritty.enable = true;
|
||||
programs.alacritty.settings = {
|
||||
window.opacity = 0.9;
|
||||
};
|
||||
}
|
11
user/app/terminal/kitty.nix
Normal file
11
user/app/terminal/kitty.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
kitty
|
||||
];
|
||||
programs.kitty.enable = true;
|
||||
programs.kitty.settings = {
|
||||
background_opacity = "0.9";
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue