diff options
| author | Fuwn <[email protected]> | 2024-12-31 20:18:06 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-12-31 20:18:06 -0800 |
| commit | 43bc891a00bed45afdc51083f1a68021e2bc4c95 (patch) | |
| tree | 0cf65ced4f46241aa1e0abb43e0965de95bb65c8 /modules/mac/users.nix | |
| parent | nara: add bun (diff) | |
| download | nixos-config-43bc891a00bed45afdc51083f1a68021e2bc4c95.tar.xz nixos-config-43bc891a00bed45afdc51083f1a68021e2bc4c95.zip | |
nara: overhaul
Diffstat (limited to 'modules/mac/users.nix')
| -rw-r--r-- | modules/mac/users.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/mac/users.nix b/modules/mac/users.nix new file mode 100644 index 0000000..f390c1c --- /dev/null +++ b/modules/mac/users.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: +{ + users.users.ebisu = + let + name = "ebisu"; + in + { + inherit name; + + home = "/Users/${name}"; + shell = pkgs.fish; + }; +} |