Remove unnecessary options from Win users

This commit is contained in:
Manuel Thalmann 2024-08-08 15:32:05 +02:00
parent dd1bc94d75
commit 4d31b476cb
2 changed files with 29 additions and 18 deletions

View file

@ -8,6 +8,22 @@
cfg = config.valhalla;
capitalize = (import ../text.nix { inherit lib; }).capitalize;
linuxOptions = {
defaultShell = mkOption {
type = types.nullOr types.str;
description = "The default shell of the user.";
default = null;
};
rclone = {
configurations = mkOption {
type = types.attrsOf syncType;
description = "The configurations of the rclone mounts.";
default = {};
};
};
};
syncType = types.submodule (
{ ... }: {
options = {
@ -46,25 +62,13 @@
default = [];
};
defaultShell = mkOption {
type = types.nullOr types.str;
description = "The default shell of the user.";
default = null;
};
rclone = {
configurations = mkOption {
type = types.attrsOf syncType;
description = "The configurations of the rclone mounts.";
default = {};
};
};
git = (import ./git/options.nix) { inherit lib; };
} // options;
}));
userType = mkUserType { options = {}; };
userType = mkUserType {
options = linuxOptions;
};
winUserType = mkUserType {
options = {
@ -88,9 +92,12 @@
type = types.attrsOf winUserType;
description = "The users to create on the Windows machine.";
default = lib.attrsets.concatMapAttrs (
name: options: {
${capitalize name} = options;
}) cfg.users;
name: options:
if builtins.elem name (builtins.attrNames linuxOptions)
then {}
else {
${capitalize name} = options;
}) cfg.users;
};
};
};

View file

@ -10,6 +10,10 @@
enable = true;
linuxPercentage = 70; # better safe than sorry
};
users.Manuel = {
microsoftAccount = true;
};
};
partition.os.partitions = {