progress?

This commit is contained in:
benstrb 2026-03-27 19:36:20 +01:00
parent 7d6dd5e9e4
commit 86090fa40e
4 changed files with 28 additions and 9 deletions

View file

@ -0,0 +1,13 @@
{
config.flake.factory.user = username: {
nixos."${username}" = {pkgs, ...}: {
users.users."${username}" = {
isNormalUser = true;
name = "${username}";
};
extraGroups = ["wheel"];
shell = pkgs.nushell;
};
};
}