blob: fc412c9138e165c25f269552ecd2ba7664a59bd2 (
plain) (
tree)
|
|
{ pkgs, ... }:
{
# The user should already exist, but we need to set this up so Nix knows
# what our home directory is (https://github.com/LnL7/nix-darwin/issues/423).
users.users.fcuny = {
home = "/Users/fcuny";
shell = pkgs.fish;
};
}
|