Lots of user changes and also Spacebar

This commit is contained in:
Bun 2025-03-14 18:23:32 -04:00
parent b5ec4cbf68
commit 36c3f778c8
19 changed files with 69 additions and 43 deletions

View file

@ -1,4 +1,5 @@
{ ... }: {
{ ... }:
{
imports = [
./users
./groups

View file

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

View file

@ -1,9 +1,7 @@
{ ... }:
{ home-manager, ... }:
{
imports = [
./custom
./system
./main
home-manager.nixosModules.home-manager
];
users.mutableUsers = false;
}

View file

@ -12,14 +12,14 @@
isNormalUser = true;
createHome = true;
openssh.authorizedKeys.keyFiles = [
../../../../../../hosts/tower/id_ed25519.pub
../../../../../hosts/tower/id_ed25519.pub
../../../../../../hosts/envy/id_ed25519.pub
../../../../../../hosts/pear/id_ed25519.pub
../../../../../../hosts/redmond/id_ed25519.pub
../../../../../hosts/envy/id_ed25519.pub
../../../../../hosts/pear/id_ed25519.pub
../../../../../hosts/redmond/id_ed25519.pub
../../../../../../hosts/midas/id_ed25519.pub
../../../../../../hosts/prophet/id_ed25519.pub
../../../../../hosts/midas/id_ed25519.pub
../../../../../hosts/prophet/id_ed25519.pub
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJahAoF74BY6GCTsFkt1ADKaraFgJJozW1Y1aBTLK0j9 Pixel9"
@ -43,6 +43,6 @@
shell = pkgs.zsh;
};
home-manager.users."${config.sysusers.main}" = import ../../../../../home;
home-manager.users."${config.sysusers.main}" = import ../../../../home;
};
}

View file

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

View file

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

View file

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

View file

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

View file

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