diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-03-08 21:00:24 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-03-08 21:09:54 -0600 |
| commit | 65bbf5411d8d3e30bffcc278ccace65c7e75c70c (patch) | |
| tree | 29c3e9b3e041cf68bee2947f2a66b7bf9f32982d /home/default.nix | |
| parent | 3e509d0fd1034c1dd67e16ec6000e46be9dd65d9 (diff) | |
Implement shell environments
Diffstat (limited to '')
| -rw-r--r-- | home/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/home/default.nix b/home/default.nix index abd034b..10dbe18 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,6 +1,11 @@ { lib, config, pkgs, ... }: { imports = [ ./unfree.nix ]; + nix.registry."system".to = { + type = "path"; + path = "/home/ale/nix"; + }; + home = { # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage @@ -155,6 +160,8 @@ clock24 = true; escapeTime = 10; terminal = "xterm-256color"; + keyMode = "vi"; + extraConfig = '' set -g mouse on set -ga update-environment " LIFT_PID" |
