mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 14:23:55 -05:00
16 lines
437 B
Nix
16 lines
437 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" ];
|
||
};
|
||
};
|
||
}
|