summaryrefslogtreecommitdiff
path: root/home/default.nix
blob: e05ac129544b1070e39006d3f7aeb3f0729f03f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{pkgs, ...}: {
  personal = {
    profiles = {
      dev = true;
      multimedia = true;
      social = true;
      syncing = true;
    };
    identities = {
      personal = true;
      work = true;
    };
  };

  accounts.email.accounts.personal.primary = true;

  home.packages = [pkgs.screen];
}