mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
Aly Raffauf
7394dc9339
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* migrate to new transparency settings * sway: set default border and floating border to 2 * nix fmt * hyprland: don't dimaround rofi
29 lines
625 B
Nix
29 lines
625 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.ar.home;
|
|
in {
|
|
config = lib.mkIf cfg.apps.kitty.enable {
|
|
programs.kitty = {
|
|
enable = true;
|
|
|
|
font = {
|
|
name = cfg.theme.monospaceFont.name;
|
|
size = cfg.theme.monospaceFont.size + 1;
|
|
};
|
|
|
|
settings = {
|
|
background_opacity = "0.6";
|
|
confirm_os_window_close = "0";
|
|
notify_on_cmd_finish = "unfocused 10.0 command ${lib.getExe pkgs.libnotify} -i ${pkgs.kitty}/share/icons/hicolor/256x256/apps/kitty.png \"Job Finished\"";
|
|
tab_bar_style = "powerline";
|
|
};
|
|
|
|
theme = "Adwaita dark";
|
|
};
|
|
};
|
|
}
|