blob: cf70f50bedf176100ef172328ccb40a3aaf087e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ config, lib, pkgs, isDesktop, isTrusted, ... }:
{
imports = [ ./cli ./devel ] ++ (if isDesktop then [ ./desktop ] else [ ])
++ (if isTrusted then [ ./trusted ] else [ ]);
programs.home-manager.enable = true;
home.sessionVariables = {
EDITOR = "emacsclient -c -a=";
VISUAL = "emacsclient -c -a=";
LANG = "en_US.UTF-8";
LC_CTYPE = "en_US.UTF-8";
LC_ALL = "en_US.UTF-8";
};
}
|