nixcfg/users/aly.nix

11 lines
266 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";
2024-03-23 15:20:23 -04:00
extraGroups = [ "networkmanager" "wheel" "docker" "libvirtd" "video" ];
2024-03-02 00:08:54 -05:00
};
}