summaryrefslogtreecommitdiff
path: root/lib/mkprofile.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-05-11 17:20:52 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-05-11 17:20:52 -0500
commit4e4ec16117af9dbf1043e8b9e82e908e0efbfa75 (patch)
tree235e7a77f52e380720ebc6f7d7491ea87f421530 /lib/mkprofile.nix
parent9c851cb90d57ec2d2f4041cba3b684974d462231 (diff)
downloadnixos-4e4ec16117af9dbf1043e8b9e82e908e0efbfa75.tar.xz
nixos-4e4ec16117af9dbf1043e8b9e82e908e0efbfa75.zip
new standalone home-manager config in flakestandalone-home
Diffstat (limited to 'lib/mkprofile.nix')
-rw-r--r--lib/mkprofile.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/mkprofile.nix b/lib/mkprofile.nix
index ec851de..c8cfe12 100644
--- a/lib/mkprofile.nix
+++ b/lib/mkprofile.nix
@@ -8,11 +8,11 @@ in {
options._archetypes.profiles.${profileName} = {
enable = lib.mkEnableOption "enable nixos profile ${profileName}";
home.users = lib.mkOption {
- type = lib.types.attrsOf (lib.types.submodule {
- options = {
- enable = lib.mkEnableOption "home-manager profile ${profileName} for user";
- };
- });
+ type = lib.types.attrsOf (lib.types.submodule {
+ options = {
+ enable = lib.mkEnableOption "home-manager profile ${profileName} for user";
+ };
+ });
default = {};
description = "enable home-manager profile ${profileName} for user the specified user";
};