aboutsummaryrefslogblamecommitdiff
path: root/home/modules/userinfo.nix
blob: 46afc7303403a4217308d9ed87b935ce6f002b98 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                        
{ lib, ... }:
{
  options = with lib; {
    userinfo = {
      fullName = mkOption {
        type = types.str;
        example = "Someone Someonesson";
      };
      email = mkOption {
        type = types.str;
        example = "some@email.com";
      };
    };
  };
}