nix-config/machines/phil/default.nix
2023-04-23 10:29:18 -06:00

14 lines
212 B
Nix

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