git.fiddlerwoaroof.com
Browse code

feat(nix): install zsh with nix

Edward Langley authored on 27/03/2022 04:37:44
Showing 1 changed files
... ...
@@ -14,13 +14,8 @@
14 14
       url = "https://github.com/kamadorueda/alejandra/tarball/1.1.0";
15 15
       sha256 = "0r8d4pllz3rar5b8xlk332mm395nj6w1zh6dnpbz7156fii4lhdy";
16 16
     }))
17
-    # Pick one from: aarch64-darwin, aarch64-linux, i686-linux, x86_64-darwin, x86_64-linux
18 17
     .aarch64-darwin;
19 18
 
20
-  # zsh = pkgs.zsh.overrideAttrs ({postInstall}: {postInstall = ''
21
-  #   make install.info install.html
22
-  #   '' + postInstall})
23
-
24 19
   common_home =
25 20
     import "${dotfileDirectory}/nix/common.nix" {inherit homeDirectory pkgs;};
26 21
 in {
... ...
@@ -37,6 +32,7 @@ in {
37 32
       pkgs.openssl
38 33
       pkgs.pandoc
39 34
       alejandra
35
+      pkgs.zsh
40 36
       (pkgs.emacsGit.override {nativeComp = true;})
41 37
     ];
42 38