mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
21 lines
444 B
Nix
21 lines
444 B
Nix
{
|
||
inputs,
|
||
pkgs,
|
||
lib,
|
||
config,
|
||
...
|
||
}: {
|
||
options = {
|
||
userConfig.aly.enable = lib.mkEnableOption "Enables Aly's user.";
|
||
};
|
||
|
||
config = lib.mkIf config.userConfig.aly.enable {
|
||
# 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" "libvirtd" "video"];
|
||
};
|
||
};
|
||
}
|