glotzbert: format

This commit is contained in:
Sandro - 2024-01-03 19:30:29 +01:00
parent dde061a6e4
commit 97b9deb158
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 11 additions and 9 deletions

View File

@ -14,11 +14,6 @@
max-jobs = 4;
};
sops = {
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
defaultSopsFile = ./secrets.yaml;
};
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
@ -121,10 +116,17 @@
wheelNeedsPassword = false;
};
users.groups."k-ot".gid = 1000;
users.users."k-ot" = {
group = "k-ot";
extraGroups = [ "networkmanager" ];
sops = {
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
defaultSopsFile = ./secrets.yaml;
};
users = {
groups."k-ot".gid = 1000;
users."k-ot" = {
group = "k-ot";
extraGroups = [ "networkmanager" ];
};
};
system.stateVersion = "22.11";