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

 

            
                                                      
 
                                      

                           

                                  


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