blob: 32145dd45daa1f4cbee9cd649d5f2518e8eb8842 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, lib, pkgs, isDesktop, ... }:
{
imports = [ ./cli ./devel ] ++ (if isDesktop then [ ./desktop ] 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";
};
}
|