{ pkgs, ... }: { imports = [ ../profiles/darwin.nix ../profiles/home-manager.nix ]; users.users.fcuny = { home = "/Users/fcuny"; shell = pkgs.fish; }; environment.shells = [ pkgs.fish ]; programs.fish.enable = true; programs.fish.shellInit = '' # Nix if test -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish' source '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish' end # End Nix ''; home-manager.users.fcuny = { home.stateVersion = "23.05"; home.username = "fcuny"; home.homeDirectory = "/Users/fcuny"; imports = [ ../home/profiles/mac.nix ../home/profiles/work.nix ]; userinfo = { email = "fcuny@roblox.com"; fullName = "Franck Cuny"; }; }; }