ff31b21a74
- Add self-hosted Gitea Actions runner module (servers/hetzner/modules/services/gitea.nix) - Add CI workflow (.gitea/workflows/ci.yml): - Flake check (x86_64-linux + aarch64-linux, eval-only) - Pre-commit checks (x86_64-linux only) - Gitea-native runner (no Docker); Nix from host PATH - NIX_CONFIG enables flakes + extra-platforms - Remove redundant .github/workflows/ci.yml (shadows .gitea) - Enable deadnix in pre-commit hooks (flake.nix), fix 38 files - Add statix.toml disabling empty_pattern lint (nixpkgs standard) - Format whole repo with alejandra (27 files) - Fix CI nix-not-found: export /run/current-system/sw/bin in PATH - Remove aarch64 from pre-commit matrix (no QEMU binfmt deployed yet)
43 lines
774 B
Nix
43 lines
774 B
Nix
{pkgs, ...}: {
|
|
users.users.someone.packages = [pkgs.mako];
|
|
|
|
xdg.configFile."mako/config".text = ''
|
|
background-color=#282828
|
|
text-color=#FAB387
|
|
border-color=#ebdbb2
|
|
progress-color=#FAB387
|
|
|
|
font=SauceCodePro Nerd Font 10
|
|
width=300
|
|
height=100
|
|
margin=20
|
|
padding=15
|
|
border-size=2
|
|
border-radius=2
|
|
icons=1
|
|
max-icon-size=48
|
|
default-timeout=5000
|
|
group-by=category
|
|
|
|
[urgency=low]
|
|
border-color=#928374
|
|
|
|
[urgency=normal]
|
|
border-color=#b8bb26
|
|
|
|
[urgency=critical]
|
|
border-color=#fb4934
|
|
default-timeout=0
|
|
|
|
[category=osd]
|
|
anchor=bottom-center
|
|
width=200
|
|
height=60
|
|
margin=0,0,100,0
|
|
padding=10
|
|
default-timeout=2000
|
|
text-alignment=center
|
|
border-color=#b8bb26
|
|
'';
|
|
}
|