This commit is contained in:
Erwin Boskma 2023-05-30 15:36:25 +02:00
parent 56e1c03098
commit 299a4e4b36
Signed by: erwin
SSH key fingerprint: SHA256:9LmFDe1C6jSrEyqxxvX8NtJBmcbB105XoqyUZF092bg
4 changed files with 13 additions and 5 deletions

View file

@ -7,7 +7,10 @@
]; ];
eboskma = { eboskma = {
users.erwin.enable = true; users.erwin = {
enable = true;
server = true;
};
docker.enable = true; docker.enable = true;
drone.enable = true; drone.enable = true;
nix-common = { nix-common = {

View file

@ -9,7 +9,10 @@
]; ];
eboskma = { eboskma = {
users.erwin.enable = true; users.erwin = {
enable = true;
server = true;
};
gitea.enable = true; gitea.enable = true;
nix-common = { nix-common = {
enable = true; enable = true;

View file

@ -2,7 +2,6 @@
{ modulesPath, ... }: { { modulesPath, ... }: {
imports = [ imports = [
(modulesPath + "/virtualisation/proxmox-lxc.nix") (modulesPath + "/virtualisation/proxmox-lxc.nix")
./hardware-configuration.nix
../../users/root ../../users/root
../../users/erwin ../../users/erwin
]; ];

View file

@ -14,9 +14,7 @@ in
services.gitea = { services.gitea = {
enable = true; enable = true;
user = "git"; user = "git";
domain = "git.datarift.nl";
appName = "Gitea Datarift"; appName = "Gitea Datarift";
rootUrl = "https://git.datarift.nl/";
lfs = { lfs = {
enable = true; enable = true;
}; };
@ -46,6 +44,11 @@ in
ENABLE_PUSH_CREATE_ORG = true; ENABLE_PUSH_CREATE_ORG = true;
}; };
server = {
DOMAIN = "git.datarift.nl";
ROOT_URL = "https://git.datarift.nl/";
};
service = { service = {
DEFAULT_KEEP_EMAIL_PRIVATE = true; DEFAULT_KEEP_EMAIL_PRIVATE = true;
DISABLE_REGISTRATION = true; DISABLE_REGISTRATION = true;