added new usb system, started modularizing

This commit is contained in:
2025-06-13 18:52:13 +02:00
parent 58b0456f8c
commit 0a731ef17f
17 changed files with 669 additions and 354 deletions

View File

@@ -1,6 +1,6 @@
{pkgs, lib, ...}:
{pkgs, lib, config, ...}:
let
stylix = import ./stylix.nix { inherit pkgs; };
cfg = config.nix-config.style;
in
{
programs.kitty = {
@@ -35,12 +35,12 @@ in
# color15 = stylix.stylix.base16Scheme.base0F;
# also reuse the background opacity by stylix
background_opacity = stylix.stylix.opacity.terminal;
background_opacity = cfg.terminalOpacity;
background = "#000000";
font_family = stylix.stylix.fonts.monospace.name;
font_size = stylix.stylix.fonts.sizes.terminal;
font_family = cfg.monospaceFont;
font_size = cfg.fontSizes.terminal;
confirm_os_window_close = 0;
enable_audio_bell = false;
cursor_trail = 3;