Files
sydnix/modules/nixos/users.nix
Madeleine Sydney Ślaga 0ea963c879 chore: Fix tree-wide permissions
No idea why everything was executable, lol.
2025-09-08 06:08:20 -06: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 = [];
};
};
};
}