Files
sydnix/modules/nixos/users.nix
2024-12-29 02:43:35 -07:00

19 lines
315 B
Nix
Executable File

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.sydnix.users;
in {
options = {
sydnix.users = {
users = mkOption {
description =
"List of usernames whose home profiles should be imported.";
type = with types; listOf str;
default = [];
};
};
};
}