feat: add kitty and yazi

This commit is contained in:
Jacob Bachmann 2024-08-28 12:27:54 +02:00
parent 3a72a0b20e
commit da7363f629
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
8 changed files with 27 additions and 6 deletions

View file

@ -6,6 +6,7 @@
./discord.nix
./games.nix
./keyring.nix
./kitty.nix
./obs.nix
./vscode.nix
./zathura.nix

View file

@ -1,5 +1,6 @@
{ nixosConfig, lib, pkgs, ... }: lib.mkIf nixosConfig.bchmnn.games.enable {
home.packages = with pkgs; [
extremetuxracer
celestia # real-time 3d simulation of space
extremetuxracer # high speed arctic racing game based on tux racer
];
}

View file

@ -0,0 +1,12 @@
{ pkgs, lib, ... }:
let
common = (import ../common.nix) { pkgs = pkgs; lib = lib; };
in
{
programs.kitty = {
enable = true;
font.name = common.font;
font.size = 12;
theme = "Tango Light";
};
}