about summary refs log tree commit diff
path: root/users/fcuny/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/default.nix')
-rw-r--r--users/fcuny/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/users/fcuny/default.nix b/users/fcuny/default.nix
deleted file mode 100644
index ffbcb0b..0000000
--- a/users/fcuny/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ 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";
-  };
-}