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)
41 lines
882 B
Nix
41 lines
882 B
Nix
{pkgs, ...}: {
|
|
users.users.someone.packages = [pkgs.ashell];
|
|
|
|
xdg.configFile."ashell/config.toml".text = ''
|
|
[modules]
|
|
left = [ [ "appLauncher", "Updates", "Workspaces", "ScreenMirror" ], "MediaPlayer" ]
|
|
center = [ "WindowTitle" ]
|
|
right = [ "SystemInfo", [ "Tray", "Clock", "Privacy", "Settings" ] ]
|
|
|
|
|
|
[system_info]
|
|
indicators = [ "Cpu", "Memory", "Temperature" ]
|
|
|
|
[system_info.cpu]
|
|
warn_threshold = 60
|
|
alert_threshold = 80
|
|
|
|
[system_info.memory]
|
|
warn_threshold = 70
|
|
alert_threshold = 85
|
|
|
|
[system_info.temperature]
|
|
warn_threshold = 60
|
|
alert_threshold = 80
|
|
|
|
[tempo]
|
|
clock_format = "%a %d %b %R"
|
|
weather_location = { City = "Amsterdam" }
|
|
|
|
[appearance]
|
|
style = "Islands"
|
|
|
|
[[ScreenMirror]]
|
|
name = "ScreenMirror"
|
|
icon = ""
|
|
command = "bash /etc/nixos/scripts/screen-mirror.sh"
|
|
|
|
|
|
'';
|
|
}
|