sets up basic structure
This commit is contained in:
parent
a0e3d792a9
commit
2ac5d0321b
17 changed files with 1368 additions and 36 deletions
20
modules/config.nix
Normal file
20
modules/config.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
options.flake.globalConfig = {
|
||||
username = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "dennis";
|
||||
description = "Primary username for the system";
|
||||
};
|
||||
fullname = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "Dennis Schoepf";
|
||||
description = "Full Name of the user";
|
||||
};
|
||||
email = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "me@dnsc.io";
|
||||
description = "Full Name of the user";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue