keep username in config

This commit is contained in:
Sridhar Ratnakumar 2022-12-03 14:11:42 -05:00
parent 8472de8993
commit bd5cde341a
5 changed files with 49 additions and 40 deletions

9
config.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, ... }:
{
options = {
myUserName = lib.mkOption {
type = lib.types.str;
description = "The canonical (only) user to add to all systems.";
};
};
}