blob: e593055524da598dabfc23fb5a7d3e600b20239c (
plain) (
tree)
|
|
{ lib, ... }:
{
imports = [ ./hardware ./system ./services ./home ];
options.my = with lib; {
user = {
name = mkOption {
type = types.str;
default = "fcuny";
example = "franck";
description = "my username";
};
home = {
enable = mkEnableOption {
description = "home-manager configuration";
default = true;
};
};
};
};
}
|