aboutsummaryrefslogtreecommitdiff
path: root/home/darwin.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-14 17:58:19 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-14 17:58:19 -0800
commit3f1bd983565dfd40f1ba2c3d602cf838f35de6e5 (patch)
tree7ff92c4f1dbed4ad07462b2b3453352096bcaad3 /home/darwin.nix
parentupdate the main documentation (diff)
downloadinfra-3f1bd983565dfd40f1ba2c3d602cf838f35de6e5.tar.gz
delete more unused configurations
Diffstat (limited to 'home/darwin.nix')
-rw-r--r--home/darwin.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/home/darwin.nix b/home/darwin.nix
index ef2787d..b4a49d8 100644
--- a/home/darwin.nix
+++ b/home/darwin.nix
@@ -3,11 +3,10 @@
home.stateVersion = "23.05";
imports = [
- ./git.nix
- ./zsh.nix
./dev.nix
- ./tmux.nix
+ ./git.nix
./ssh.nix
+ ./zsh.nix
];
home.packages = with pkgs; [
@@ -22,6 +21,14 @@
tree
];
+ home.sessionVariables = {
+ EDITOR = "emacsclient -a=";
+ VISUAL = "emacsclient -a=";
+ LESS = "-FRSXM";
+ LESSCHARSET = "utf-8";
+ PAGER = "less";
+ };
+
programs = {
direnv = {
enable = true;