NixOS-Home-Flake/system/modules/user.nix

10 lines
177 B
Nix
Raw Normal View History

2024-07-03 07:55:09 +00:00
{ pkgs, ... }: {
users = {
users.octobanon = {
isNormalUser = true;
description = "OctoBanon";
extraGroups = [ "wheel" "networkmanager" ];
};
};
}