Updates
This commit is contained in:
parent
56e1c03098
commit
299a4e4b36
4 changed files with 13 additions and 5 deletions
|
@ -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 = {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue