Wtf why did it remove everything.

This commit is contained in:
Jimbo 2025-02-28 12:21:09 -05:00
parent d58b606d90
commit 2144d9ef61
73 changed files with 1077 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{ ... }: {
imports = [
./users
./groups
];
}

View file

@ -0,0 +1,4 @@
{ ... }:
{
imports = [ ./nfsShare ];
}

View file

@ -0,0 +1,4 @@
{ ... }:
{
users.groups.nfsShare.gid = 983;
}

View file

@ -0,0 +1,7 @@
{ home-manager, ... }:
{
imports = [
./main
home-manager.nixosModules.home-manager
];
}

View file

@ -0,0 +1,9 @@
{ ... }:
{
imports = [
./custom
./system
];
users.mutableUsers = false;
}

View file

@ -0,0 +1,9 @@
{ ... }:
{
imports = [
./jellyfin
./liquidsoap
./nextcloud
./nginx
];
}

View file

@ -0,0 +1,12 @@
{ ... }:
{
users = {
users.jellyfin = {
group = "jellyfin";
extraGroups = [ "nfsShare" ];
isSystemUser = true;
uid = 983;
};
groups.jellyfin = {};
};
}

View file

@ -0,0 +1,12 @@
{ ... }:
{
users = {
users.liquidsoap = {
group = "liquidsoap";
extraGroups = [ "nginx" ];
isSystemUser = true;
uid = 155;
};
groups.liquidsoap = {};
};
}

View file

@ -0,0 +1,12 @@
{ ... }:
{
users = {
users.nextcloud = {
group = "nextcloud";
extraGroups = [ "nfsShare" ];
isSystemUser = true;
uid = 218;
};
groups.nextcloud = {};
};
}

View file

@ -0,0 +1,15 @@
{ ... }:
{
users = {
users.nginx = {
group = "nginx";
extraGroups = [
"turnserver"
"virtualMail"
];
isSystemUser = true;
uid = 60;
};
groups.nginx = {};
};
}