mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2025-01-08 17:11:02 +00:00
move gitea to SP module
This commit is contained in:
parent
054d6d9182
commit
c052f9172a
|
@ -9,7 +9,6 @@
|
||||||
./webserver/nginx.nix
|
./webserver/nginx.nix
|
||||||
./webserver/memcached.nix
|
./webserver/memcached.nix
|
||||||
# ./resources/limits.nix
|
# ./resources/limits.nix
|
||||||
./git/gitea.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
fileSystems."/".options = [ "noatime" ];
|
fileSystems."/".options = [ "noatime" ];
|
||||||
|
|
|
@ -1,71 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
let
|
|
||||||
cfg = config.selfprivacy;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
fileSystems = lib.mkIf cfg.useBinds {
|
|
||||||
"/var/lib/gitea" = {
|
|
||||||
device = "/volumes/${cfg.gitea.location}/gitea";
|
|
||||||
options = [ "bind" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
services = {
|
|
||||||
gitea = {
|
|
||||||
enable = cfg.gitea.enable;
|
|
||||||
stateDir = "/var/lib/gitea";
|
|
||||||
# log = {
|
|
||||||
# rootPath = "/var/lib/gitea/log";
|
|
||||||
# level = "Warn";
|
|
||||||
# };
|
|
||||||
user = "gitea";
|
|
||||||
database = {
|
|
||||||
type = "sqlite3";
|
|
||||||
host = "127.0.0.1";
|
|
||||||
name = "gitea";
|
|
||||||
user = "gitea";
|
|
||||||
path = "/var/lib/gitea/data/gitea.db";
|
|
||||||
createDatabase = true;
|
|
||||||
};
|
|
||||||
# ssh = {
|
|
||||||
# enable = true;
|
|
||||||
# clonePort = 22;
|
|
||||||
# };
|
|
||||||
lfs = {
|
|
||||||
enable = true;
|
|
||||||
contentDir = "/var/lib/gitea/lfs";
|
|
||||||
};
|
|
||||||
appName = "SelfPrivacy git Service";
|
|
||||||
repositoryRoot = "/var/lib/gitea/repositories";
|
|
||||||
domain = "git.${cfg.domain}";
|
|
||||||
rootUrl = "https://git.${cfg.domain}/";
|
|
||||||
httpAddress = "0.0.0.0";
|
|
||||||
httpPort = 3000;
|
|
||||||
# cookieSecure = true;
|
|
||||||
settings = {
|
|
||||||
mailer = {
|
|
||||||
ENABLED = false;
|
|
||||||
};
|
|
||||||
ui = {
|
|
||||||
DEFAULT_THEME = "arc-green";
|
|
||||||
SHOW_USER_EMAIL = false;
|
|
||||||
};
|
|
||||||
picture = {
|
|
||||||
DISABLE_GRAVATAR = true;
|
|
||||||
};
|
|
||||||
admin = {
|
|
||||||
ENABLE_KANBAN_BOARD = true;
|
|
||||||
};
|
|
||||||
repository = {
|
|
||||||
FORCE_PRIVATE = false;
|
|
||||||
};
|
|
||||||
session = {
|
|
||||||
COOKIE_SECURE = true;
|
|
||||||
};
|
|
||||||
log = {
|
|
||||||
ROOT_PATH = "/var/lib/gitea/log";
|
|
||||||
LEVEL = "Warn";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
5
sp-modules/gitea/config-paths-needed.json
Normal file
5
sp-modules/gitea/config-paths-needed.json
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[
|
||||||
|
[ "selfprivacy", "domain" ],
|
||||||
|
[ "selfprivacy", "useBinds" ],
|
||||||
|
[ "selfprivacy", "modules", "gitea" ]
|
||||||
|
]
|
9
sp-modules/gitea/flake.nix
Normal file
9
sp-modules/gitea/flake.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
description = "PoC SP module for Gitea forge service";
|
||||||
|
|
||||||
|
outputs = { self }: {
|
||||||
|
nixosModules.default = import ./module.nix;
|
||||||
|
configPathsNeeded =
|
||||||
|
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
||||||
|
};
|
||||||
|
}
|
84
sp-modules/gitea/module.nix
Normal file
84
sp-modules/gitea/module.nix
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
{ config, lib, ... }:
|
||||||
|
let
|
||||||
|
sp = config.selfprivacy;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.selfprivacy.modules.gitea = {
|
||||||
|
enable = lib.mkOption {
|
||||||
|
default = false;
|
||||||
|
type = with lib.types; nullOr bool;
|
||||||
|
};
|
||||||
|
location = lib.mkOption {
|
||||||
|
default = "sda1";
|
||||||
|
type = with lib.types; nullOr str;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf config.selfprivacy.modules.gitea.enable {
|
||||||
|
fileSystems = lib.mkIf sp.useBinds {
|
||||||
|
"/var/lib/gitea" = {
|
||||||
|
device = "/volumes/${sp.modules.gitea.location}/gitea";
|
||||||
|
options = [ "bind" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
services = {
|
||||||
|
gitea = {
|
||||||
|
enable = true;
|
||||||
|
stateDir = "/var/lib/gitea";
|
||||||
|
# log = {
|
||||||
|
# rootPath = "/var/lib/gitea/log";
|
||||||
|
# level = "Warn";
|
||||||
|
# };
|
||||||
|
user = "gitea";
|
||||||
|
database = {
|
||||||
|
type = "sqlite3";
|
||||||
|
host = "127.0.0.1";
|
||||||
|
name = "gitea";
|
||||||
|
user = "gitea";
|
||||||
|
path = "/var/lib/gitea/data/gitea.db";
|
||||||
|
createDatabase = true;
|
||||||
|
};
|
||||||
|
# ssh = {
|
||||||
|
# enable = true;
|
||||||
|
# clonePort = 22;
|
||||||
|
# };
|
||||||
|
lfs = {
|
||||||
|
enable = true;
|
||||||
|
contentDir = "/var/lib/gitea/lfs";
|
||||||
|
};
|
||||||
|
appName = "SelfPrivacy git Service";
|
||||||
|
repositoryRoot = "/var/lib/gitea/repositories";
|
||||||
|
domain = "git.${sp.domain}";
|
||||||
|
rootUrl = "https://git.${sp.domain}/";
|
||||||
|
httpAddress = "0.0.0.0";
|
||||||
|
httpPort = 3000;
|
||||||
|
# cookieSecure = true;
|
||||||
|
settings = {
|
||||||
|
mailer = {
|
||||||
|
ENABLED = false;
|
||||||
|
};
|
||||||
|
ui = {
|
||||||
|
DEFAULT_THEME = "arc-green";
|
||||||
|
SHOW_USER_EMAIL = false;
|
||||||
|
};
|
||||||
|
picture = {
|
||||||
|
DISABLE_GRAVATAR = true;
|
||||||
|
};
|
||||||
|
admin = {
|
||||||
|
ENABLE_KANBAN_BOARD = true;
|
||||||
|
};
|
||||||
|
repository = {
|
||||||
|
FORCE_PRIVATE = false;
|
||||||
|
};
|
||||||
|
session = {
|
||||||
|
COOKIE_SECURE = true;
|
||||||
|
};
|
||||||
|
log = {
|
||||||
|
ROOT_PATH = "/var/lib/gitea/log";
|
||||||
|
LEVEL = "Warn";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -18,10 +18,6 @@ jsonData: { lib, ... }:
|
||||||
server = {
|
server = {
|
||||||
provider = lib.attrsets.attrByPath [ "server" "provider" ] "HETZNER" jsonData;
|
provider = lib.attrsets.attrByPath [ "server" "provider" ] "HETZNER" jsonData;
|
||||||
};
|
};
|
||||||
gitea = {
|
|
||||||
enable = lib.attrsets.attrByPath [ "gitea" "enable" ] false jsonData;
|
|
||||||
location = lib.attrsets.attrByPath [ "gitea" "location" ] "sda1" jsonData;
|
|
||||||
};
|
|
||||||
ssh = {
|
ssh = {
|
||||||
enable = lib.attrsets.attrByPath [ "ssh" "enable" ] true jsonData;
|
enable = lib.attrsets.attrByPath [ "ssh" "enable" ] true jsonData;
|
||||||
rootKeys = lib.attrsets.attrByPath [ "ssh" "rootKeys" ] [ "" ] jsonData;
|
rootKeys = lib.attrsets.attrByPath [ "ssh" "rootKeys" ] [ "" ] jsonData;
|
||||||
|
|
|
@ -115,16 +115,6 @@ with lib;
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
gitea = {
|
|
||||||
enable = mkOption {
|
|
||||||
default = false;
|
|
||||||
type = types.nullOr types.bool;
|
|
||||||
};
|
|
||||||
location = mkOption {
|
|
||||||
default = "sda1";
|
|
||||||
type = types.nullOr types.str;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
#########
|
#########
|
||||||
# SSH #
|
# SSH #
|
||||||
#########
|
#########
|
||||||
|
|
Loading…
Reference in a new issue