feat: Export formatter and lxc configuration from flake

This commit is contained in:
UGA Innovation Factory
2025-12-10 14:52:34 +00:00
committed by Hunter Halloran
parent faf4afcd3b
commit 01d1a36650
23 changed files with 742 additions and 308 deletions

View File

@@ -1,4 +1,10 @@
{ pkgs, config, osConfig, lib, ... }:
{
pkgs,
config,
osConfig,
lib,
...
}:
# ============================================================================
# Shell Theme Configuration
@@ -14,7 +20,7 @@ let
};
# Make a root variant with red username (wraps {{ .UserName }} with ANSI red)
jyumppRootTheme = pkgs.runCommand "jyumpp-root.omp.json" {} ''
jyumppRootTheme = pkgs.runCommand "jyumpp-root.omp.json" { } ''
sed -E 's|\{\{[[:space:]]*\.UserName[[:space:]]*\}\}|<#FF3B30>{{ .UserName }}</>|g' \
${jyumppTheme} > $out
'';