14 lines
212 B
Nix
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";
|
|
};
|
|
}
|