Home Gen128 @ 2024-04-28-16:40
This commit is contained in:
parent
115074e8a3
commit
96526203b6
@ -8,6 +8,7 @@
|
|||||||
./doom.nix
|
./doom.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./hyprland
|
./hyprland
|
||||||
|
./kitty
|
||||||
./plasma.nix
|
./plasma.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./waybar
|
./waybar
|
||||||
|
|||||||
17
home/jonas/kitty/config.nix
Normal file
17
home/jonas/kitty/config.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.kitty = {
|
||||||
|
shellIntegration.enableZshIntegration = true;
|
||||||
|
font = {
|
||||||
|
package = pkgs.fira-code-nerdfont;
|
||||||
|
name = "Fira Code Nerd Font";
|
||||||
|
size = 12;
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
background_opacity = "0.6";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
6
home/jonas/kitty/default.nix
Normal file
6
home/jonas/kitty/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
./config.nix
|
||||||
|
./kitty.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
7
home/jonas/kitty/kitty.nix
Normal file
7
home/jonas/kitty/kitty.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.kitty.enable = true;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user