This commit is contained in:
2025-02-16 20:56:14 +02:00
parent 6dd9f5c9c3
commit 5606369d4a
10 changed files with 546 additions and 0 deletions

15
hosts/eldrid/users.nix Normal file
View File

@ -0,0 +1,15 @@
{pkgs, ...}: {
nix.settings.trusted-users = ["user"];
users.users = {
user = {
isNormalUser = true;
extraGroups = ["wheel" "video" "libvirtd" "dialout"];
shell = pkgs.nushell;
};
# work = {
# isNormalUser = true;
# extraGroups = ["video"];
# shell = pkgs.nushell;
# };
};
}