aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-09 09:42:03 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-09 09:42:03 -0700
commit1125aaa49aec6a220fd3b9d03076fec398b35a14 (patch)
tree5570b0c094ead9d7879ca3d360ff3de7f45d4516 /users/fcuny/default.nix
parentdelete all CLI modules (diff)
downloadinfra-1125aaa49aec6a220fd3b9d03076fec398b35a14.tar.gz
add a few more modules to home/ and delete stuff
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";
- };
-}