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