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

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

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