blob: b248c514900c99d88b8132c55cc589c72b7c9ede (
plain) (
tree)
|
|
{ lib, ... }:
{
imports = [ ./system ./services ./secrets ];
options.my = with lib; {
user = {
name = mkOption {
type = types.str;
default = "fcuny";
example = "franck";
description = "my username";
};
};
};
}
|