diff options
Diffstat (limited to 'users/seth/module/standalone.nix')
| -rw-r--r-- | users/seth/module/standalone.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/users/seth/module/standalone.nix b/users/seth/module/standalone.nix new file mode 100644 index 0000000..c08d2ae --- /dev/null +++ b/users/seth/module/standalone.nix @@ -0,0 +1,25 @@ +{ + config, + lib, + pkgs, + inputs, + ... +}: let + cfg = config.seth.standalone; +in { + options.seth.standalone = { + enable = lib.mkEnableOption "Standalone options"; + }; + + config = lib.mkIf cfg.enable { + home = { + username = "seth"; + homeDirectory = + if pkgs.stdenv.isDarwin + then "/Users/${config.home.username}" + else "/home/${config.home.username}"; + }; + + nixpkgs.overlays = [inputs.self.overlays.default]; + }; +} |
