Large refactor

This commit is contained in:
Madeleine Sydney
2024-12-12 01:38:47 -07:00
parent 28b2aece65
commit 3f846d783a
5 changed files with 176 additions and 196 deletions

18
modules/nixos/users.nix Normal file
View File

@@ -0,0 +1,18 @@
{ 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 = [];
};
};
};
}