summaryrefslogtreecommitdiff
path: root/users/seth
diff options
context:
space:
mode:
authorgetchoo-bot[bot] <183349775+getchoo-bot[bot]@users.noreply.github.com>2024-12-21 06:30:27 +0000
committerGitHub <[email protected]>2024-12-21 06:30:27 +0000
commit6398728a8f333a1f948f6e45df0e338b2c999b7e (patch)
treea044e22f6c8e1ef1b24cf0b10247223145adbef6 /users/seth
parentb94689313cb43edf7a23e2b0f210d4403a905aba (diff)
flake: update all inputs (#527)
* flake: update all inputs * users/seth: fix standalone eval --------- Co-authored-by: getchoo-bot[bot] <183349775+getchoo-bot[bot]@users.noreply.github.com> Co-authored-by: seth <[email protected]>
Diffstat (limited to 'users/seth')
-rw-r--r--users/seth/home.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/users/seth/home.nix b/users/seth/home.nix
index 47a67cc..a6f2537 100644
--- a/users/seth/home.nix
+++ b/users/seth/home.nix
@@ -1,8 +1,16 @@
{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+{
imports = [ ./default.nix ];
seth = {
enable = true;
standalone.enable = true;
};
+
+ nix = lib.mkIf config.seth.standalone.enable { package = pkgs.nix; };
}