summaryrefslogtreecommitdiff
path: root/home/default.nix
blob: 5f0a39e3cfbf8f1b893809b66d464d2aa0922ff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, lib, pkgs, osConfig, ... }:

{
  personal = {
    profiles = {
      dev = true;
      social = true;
      syncing = true;
    };
    identities = {
      work = true;
    };
  };

  accounts.email.accounts.work.primary = true;

  home.file.".spacemacs.d/init.el".source = ./spacemacs.el;

  fonts.fontconfig.enable = true;

  home.packages = lib.optional osConfig.programs.starship.enable pkgs.nerdfonts ++ [ pkgs.evince ];
  home.shellAliases.VIEWER = "evince";
}