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,8 +1,8 @@
{ config, pkgs, lib, ... }:
let
stylix = import ./stylix.nix { inherit pkgs; };
in {
cfg = config.nix-config.style;
in
{
home.packages = with pkgs; [ wofi-emoji ];
@@ -52,14 +52,14 @@ in {
style = ''
* {
font-family: ${stylix.stylix.fonts.sansSerif.name};
font-size: ${builtins.toString (stylix.stylix.fonts.sizes.applications + 10)}px;
color: ${stylix.stylix.base16Scheme.base04};
font-family: ${cfg.monospaceFont};
font-size: ${builtins.toString (cfg.fontSizes.desktop + 8)}px;
color: white;
background: transparent;
}
#window {
background: rgba(41, 46, 66, 0.5);
background: rgba(1, 1, 1, 0.5);
margin: auto;
padding: 10px;
}