nixcfg/users/aly.nix

11 lines
247 B
Nix
Raw Normal View History

2024-03-02 00:08:54 -05:00
{ config, pkgs, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.aly = {
isNormalUser = true;
description = "Aly Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
}