Fix home directory on darwin
Stupid case-insensitive filesytem
This commit is contained in:
parent
459ecd3312
commit
051cdb47f9
3
home.nix
3
home.nix
|
@ -6,7 +6,8 @@
|
||||||
## Setup user first
|
## Setup user first
|
||||||
users = {
|
users = {
|
||||||
users.nathan = {
|
users.nathan = {
|
||||||
home = "/home/nathan";
|
# darwin is special
|
||||||
|
home = if pkgs.stdenv.isDarwin then "/home/Nathan" else "/home/nathan";
|
||||||
description = "Nathan McCarty";
|
description = "Nathan McCarty";
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue