summaryrefslogtreecommitdiff
path: root/lib/mkprofile.nix
diff options
context:
space:
mode:
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";
};