about summary refs log tree commit diff
path: root/users/fcuny/default.nix
blob: 3e55cba9bdaa08eccb150a24e40e9a6a92c3263e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, desktop, ... }:

{
  imports =
    [./cli ]
    ++ (if desktop then [./desktop ./devel] 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";
  };
}