Home Gen128 @ 2024-04-28-16:40

This commit is contained in:
Jonas Röger 2024-04-28 16:40:05 +02:00
parent 115074e8a3
commit 96526203b6
4 changed files with 31 additions and 0 deletions

View File

@ -8,6 +8,7 @@
./doom.nix
./firefox.nix
./hyprland
./kitty
./plasma.nix
./ssh.nix
./waybar

View 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";
};
};
}

View File

@ -0,0 +1,6 @@
{...}: {
imports = [
./config.nix
./kitty.nix
];
}

View File

@ -0,0 +1,7 @@
{
config,
pkgs,
...
}: {
programs.kitty.enable = true;
}