nixcfg/users/dustin.nix

11 lines
272 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.dustin = {
isNormalUser = true;
description = "Dustin Raffauf";
extraGroups = [ "networkmanager" "wheel" "docker" "libvirtd" "video" ];
};
}