dotfiles.nix/modules/darwin/users.nix

15 lines
182 B
Nix
Raw Normal View History

2022-01-23 01:32:58 +00:00
{ lib, ... }:
let
inherit (lib) mkOption types;
in
{
options = {
users.primaryUser = mkOption {
type = with types; nullOr string;
default = null;
};
};
}