This commit is contained in:
Clayton Hickey 2025-10-06 13:42:39 -04:00
parent f904bbb423
commit 5f64523982
8 changed files with 506 additions and 477 deletions

11
cos.nix Normal file
View file

@ -0,0 +1,11 @@
{ lib, ... }:
{
options.cos = {
username = lib.mkOption {
type = lib.types.str;
};
hostName = lib.mkOption {
type = lib.types.str;
};
};
}