aboutsummaryrefslogblamecommitdiff
path: root/users/fcuny/default.nix
blob: ffbcb0b459c1f099509235d289dd742972e0560e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                 

 
                                                                    
 
                                      

                           

                                  


                             
    
 
{ 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";
  };
}