Files
sydnix/modules/nixos/users.nix
Madeleine Sydney 3f846d783a Large refactor
2024-12-12 13:54:17 -07:00

19 lines
315 B
Nix

{ 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 = [];
};
};
};
}