nix-config/machines/phil/default.nix
Zuckerberg 307dee979a
Some checks failed
Check Flake / check-flake (push) Failing after 1m3s
Try to allow cross build
2023-04-29 10:48:12 -06:00

16 lines
265 B
Nix

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