about summary refs log tree commit diff
path: root/modules/default.nix
blob: d08b890c473be2bd0f4046f47c72e0aa97842ae4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, ... }:

{
  imports = [ ./system ./services ./programs ./secrets ];

  options.my = with lib; {
    user = {
      name = mkOption {
        type = types.str;
        default = "fcuny";
        example = "franck";
        description = "my username";
      };
    };
  };
}