2025-04-01 14:46:19 +00:00
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page, on
|
|
|
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
|
|
|
|
|
|
# NixOS-WSL specific options are documented on the NixOS-WSL repository:
|
|
|
|
# https://github.com/nix-community/NixOS-WSL
|
|
|
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
2025-04-03 09:48:30 +00:00
|
|
|
cfg = config.services.forgejo;
|
|
|
|
srv = cfg.settings.server;
|
2025-04-01 14:46:19 +00:00
|
|
|
in
|
|
|
|
{
|
2025-04-03 09:48:30 +00:00
|
|
|
imports = [
|
|
|
|
"shared/system.nix"
|
|
|
|
"shared/dev_user.nix"
|
|
|
|
"shared/docker.nix"
|
|
|
|
"shared/ssh.nix"
|
|
|
|
];
|
|
|
|
|
|
|
|
users.users = {
|
|
|
|
# connection only via ssh key
|
|
|
|
pipeline = {
|
|
|
|
isNormalUser = true;
|
|
|
|
home = "/home/pipeline";
|
|
|
|
description = "User used by forgejo runners to connect to this system";
|
|
|
|
extraGroups = [ "docker" ];
|
|
|
|
openssh.authorizedKeys.keys = [ "TODO" ];
|
|
|
|
};
|
2025-04-01 14:46:19 +00:00
|
|
|
};
|
|
|
|
}
|