1
Fork 0
satellite/modules/nixos/pilot.nix

9 lines
218 B
Nix
Raw Permalink Normal View History

2024-05-21 01:37:39 +02:00
{ lib, ... }: {
options.satellite.pilot = {
name = lib.mkOption {
type = lib.types.str;
description = "The name of the main user for this machine, as defined by `users.users.\${name}`";
};
};
}