Implemented TUI control center using gum. Added to systemPackages and rofi System menu. Verified: V1. Pending: V3 visual check.
8 lines
218 B
Nix
8 lines
218 B
Nix
{ writeShellApplication, coreutils, gawk, jq, gum }:
|
|
|
|
writeShellApplication {
|
|
name = "nomarchy-control-center";
|
|
runtimeInputs = [ coreutils gawk jq gum ];
|
|
text = builtins.readFile ./nomarchy-control-center.sh;
|
|
}
|