Alacrity + kitty now managed by nix + stylix!
This commit is contained in:
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";
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user