summaryrefslogtreecommitdiff
path: root/users/seth/base/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/base/default.nix')
-rw-r--r--users/seth/base/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/users/seth/base/default.nix b/users/seth/base/default.nix
new file mode 100644
index 0000000..b6c7571
--- /dev/null
+++ b/users/seth/base/default.nix
@@ -0,0 +1,19 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.seth;
+in {
+ options.seth = {
+ enable = lib.mkEnableOption "Seth's home configuration";
+ };
+
+ imports = [
+ ./standalone.nix
+ ];
+
+ config = lib.mkIf cfg.enable {
+ home.stateVersion = "23.11";
+ };
+}