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

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