sets up basic structure

This commit is contained in:
Dennis 2026-03-03 13:46:54 +01:00
parent a0e3d792a9
commit 2ac5d0321b
17 changed files with 1368 additions and 36 deletions

20
modules/config.nix Normal file
View 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";
};
};
}