10 lines
263 B
Nix
10 lines
263 B
Nix
{config, ...}: {
|
|
flake.modules.nixos.base = {
|
|
users.users.${config.flake.meta.user.name} = {
|
|
isNormalUser = true;
|
|
description = "${config.flake.meta.user.name}";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
packages = [];
|
|
};
|
|
};
|
|
}
|