aboutsummaryrefslogtreecommitdiff
path: root/machines/mbp-work.nix
blob: 8050987ac983d61c500571ff9a6319f0c42da75a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ pkgs, ... }:
{
  imports = [
    ../profiles/darwin.nix
    ../profiles/home-manager.nix
  ];

  users.users.fcuny = {
    home = "/Users/fcuny";
    shell = pkgs.fish;
  };

  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";
    };
  };
}