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