nix-config/machines/phil/default.nix
2023-04-26 14:46:55 -06:00

15 lines
217 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./hardware-configuration.nix
];
services.gitea-runner = {
enable = true;
instanceUrl = "https://git.neet.dev";
};
system.autoUpgrade.enable = true;
}