feat: refactored home manager

This commit is contained in:
Nick 2025-01-19 23:40:54 -06:00
parent 65417d1809
commit 376c1d7b18
511 changed files with 1777 additions and 772 deletions

View file

@ -0,0 +1,22 @@
{
flake,
pkgs,
...
}:
let
inherit (flake.config.aesthetics.themes)
font
;
in
{
confirm-close-surface = false;
window-decoration = false;
font-size = font.size.terminal;
font-family = font.name;
window-padding-x = 10;
window-padding-y = 10;
copy-on-select = true;
bold-is-bright = true;
shell-integration = "detect";
command = "${pkgs.nushell}/bin/nu";
}