This commit is contained in:
parent
035fdc710b
commit
8aab4b1056
|
@ -838,6 +838,9 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
|
||||||
HTTP_PORT = 3088;
|
HTTP_PORT = 3088;
|
||||||
DOMAIN = "git.lyte.dev";
|
DOMAIN = "git.lyte.dev";
|
||||||
};
|
};
|
||||||
|
migrations = {
|
||||||
|
ALLOWED_DOMAINS = "*.github.com,github.com,gitlab.com,*.gitlab.com";
|
||||||
|
};
|
||||||
actions = {
|
actions = {
|
||||||
ENABLED = true;
|
ENABLED = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -25,11 +25,13 @@
|
||||||
device = "/dev/sda";
|
device = "/dev/sda";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
users.groups.beefcake = {};
|
||||||
users.users = {
|
users.users = {
|
||||||
beefcake = {
|
beefcake = {
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
createHome = true;
|
createHome = true;
|
||||||
home = "/storage/backups/beefcake";
|
home = "/storage/backups/beefcake";
|
||||||
|
group = "beefcake";
|
||||||
extraGroups = ["sftponly"];
|
extraGroups = ["sftponly"];
|
||||||
openssh.authorizedKeys.keys =
|
openssh.authorizedKeys.keys =
|
||||||
config.users.users.daniel.openssh.authorizedKeys.keys
|
config.users.users.daniel.openssh.authorizedKeys.keys
|
||||||
|
|
Loading…
Reference in a new issue