nixcfg/users/dustin/default.nix

11 lines
250 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 = "Dustin Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" ];
};
}