nixcfg/users/aly.nix

13 lines
310 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-06 18:14:37 -05:00
extraGroups = [ "networkmanager" "wheel" "docker" "libvirtd" ];
2024-03-02 00:08:54 -05:00
};
2024-03-13 13:28:54 -04:00
home-manager.users.aly = import ../home/aly.nix;
2024-03-02 00:08:54 -05:00
}