mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Alacrity + kitty now managed by nix + stylix!
This commit is contained in:
parent
8f505cff9c
commit
64a805295e
4 changed files with 24 additions and 2 deletions
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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue