aboutsummaryrefslogtreecommitdiff
path: root/users/zsh.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-09 18:02:01 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-09 18:02:01 -0800
commitf418fec2dfed5eaddb47df96788306134b0f09c0 (patch)
treeba6adefeb831e1fc255c878f1193ef62c0f1beb6 /users/zsh.nix
parenthome-manager: expand zsh configuration (diff)
downloadinfra-f418fec2dfed5eaddb47df96788306134b0f09c0.tar.gz
home-manager: fix path for zsh.nix
Diffstat (limited to 'users/zsh.nix')
-rw-r--r--users/zsh.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/users/zsh.nix b/users/zsh.nix
deleted file mode 100644
index be827b4..0000000
--- a/users/zsh.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{config, lib, pkgs, ...}:
-
-{
-
- xdg.configFile."zsh/personal".source = config.lib.file.mkOutOfStoreSymlink ../configs/zsh;
-
- programs.zsh = {
- enable = true;
- enableAutosuggestions = true;
- enableCompletion = true;
- defaultKeymap = "emacs";
- history = {
- save = 100000;
- extended = true;
- ignoreDups = true;
- };
- initExtra = ''
- source ${config.xdg.configHome}/zsh/personal/init.zsh
- '';
- };
-}