diff options
author | Alan Pearce | 2019-10-05 01:42:36 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-05 01:42:36 +0200 |
commit | af91a31eb5ccb46e605aa9b6cf1e792590409ef6 (patch) | |
tree | 35e2886cbac61aa12880bd39368f5a4cdff7f8a1 | |
parent | c93dd657819ee2bafb49fe309cc1ee3aac5387e5 (diff) | |
download | nixfiles-af91a31eb5ccb46e605aa9b6cf1e792590409ef6.tar.lz nixfiles-af91a31eb5ccb46e605aa9b6cf1e792590409ef6.tar.zst nixfiles-af91a31eb5ccb46e605aa9b6cf1e792590409ef6.zip |
user-interface: ensure zsh has access to completions
-rw-r--r-- | system/modules/user-interface.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/modules/user-interface.nix b/system/modules/user-interface.nix index c913bc70..4cc600d4 100644 --- a/system/modules/user-interface.nix +++ b/system/modules/user-interface.nix @@ -3,6 +3,8 @@ { documentation.info.enable = true; nixpkgs.config.firefox.enableOfficialBranding = true; + environment.pathsToLink = [ "/share/zsh" ]; + environment.systemPackages = with pkgs; [ aria2 firefox |