nixos-config/machines/gitea/configuration.nix

67 lines
1.2 KiB
Nix
Raw Normal View History

2023-05-23 17:12:31 +02:00
{ self, ... }:
{ modulesPath, ... }: {
imports = [
2023-05-23 17:12:31 +02:00
(modulesPath + "/virtualisation/proxmox-lxc.nix")
../../users/root
../../users/erwin
2022-10-30 21:06:18 +01:00
./backup.nix
];
eboskma = {
2023-05-30 15:36:25 +02:00
users.erwin = {
enable = true;
server = true;
};
gitea.enable = true;
2022-08-07 11:24:24 +02:00
nix-common = {
enable = true;
2022-08-14 16:38:25 +02:00
remote-builders = true;
2022-08-07 11:24:24 +02:00
};
};
boot.isContainer = true;
time.timeZone = "Europe/Amsterdam";
system.configurationRevision = self.inputs.nixpkgs.lib.mkIf (self ? rev) self.rev;
2023-05-23 17:12:31 +02:00
# networking = {
# hostName = "gitea";
# useDHCP = false;
# interfaces = {
# eth0 = {
# ipv4.addresses = [
# {
# address = "10.0.0.201";
# prefixLength = 24;
# }
# ];
# };
# };
# defaultGateway = "10.0.0.1";
# nameservers = [ "10.0.0.254" ];
# };
proxmoxLXC = {
privileged = true;
};
2022-10-26 17:12:39 +02:00
security.sudo.execWheelOnly = true;
2023-05-23 17:12:31 +02:00
services.tailscale.enable = true;
sops.defaultSopsFile = ./secrets.yaml;
sops.secrets = {
gitea_db_password = {
owner = "git";
};
2022-10-30 21:06:18 +01:00
gitea_backup_ssh_key = { };
gitea_backup_pass = { };
};
system.stateVersion = "22.05";
}