about summary refs log tree commit diff
path: root/nix/users/fcuny/darwin.nix
blob: b56a67d7eb90d9c63f30767877a27372b27cd24f (plain) (blame)
1
2
3
4
5
6
7
8
{ 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;
  };
}