summaryrefslogtreecommitdiff
path: root/modules/darwin/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'modules/darwin/profiles')
-rw-r--r--modules/darwin/profiles/personal.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/darwin/profiles/personal.nix b/modules/darwin/profiles/personal.nix
index 537e8ae..025197a 100644
--- a/modules/darwin/profiles/personal.nix
+++ b/modules/darwin/profiles/personal.nix
@@ -1,19 +1,21 @@
{ config, lib, ... }:
+
let
cfg = config.profiles.personal;
in
+
{
options.profiles.personal = {
enable = lib.mkEnableOption "the Personal profile";
};
config = lib.mkIf cfg.enable {
- homebrew.enable = true;
-
- traits = {
+ borealis = {
users = {
seth.enable = true;
};
};
+
+ homebrew.enable = true;
};
}