dotfiles.nix/modules/darwin/users.nix

15 lines
182 B
Nix

{ lib, ... }:
let
inherit (lib) mkOption types;
in
{
options = {
users.primaryUser = mkOption {
type = with types; nullOr string;
default = null;
};
};
}