blob: afb401430491d0565a1109d2f4ceaeab77912b39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ config, lib, pkgs, ... }:
{
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 config.programs.starship.enable pkgs.nerdfonts;
}
|