diff options
author | Alan Pearce | 2020-12-31 21:44:28 +0100 |
---|---|---|
committer | Alan Pearce | 2021-03-02 10:14:38 +0100 |
commit | 34ace803240c274a33130325f00ffbd2acc9f17f (patch) | |
tree | a890d8764565b648942d50aad6d724227076ff5a /system/settings | |
parent | fc836e6bcebeda1eb02b5cabb4b865881f54ef47 (diff) | |
download | nixfiles-34ace803240c274a33130325f00ffbd2acc9f17f.tar.lz nixfiles-34ace803240c274a33130325f00ffbd2acc9f17f.tar.zst nixfiles-34ace803240c274a33130325f00ffbd2acc9f17f.zip |
base: ensure cachix is installed
Diffstat (limited to 'system/settings')
-rw-r--r-- | system/settings/base.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/settings/base.nix b/system/settings/base.nix index d103639c..6b5fef19 100644 --- a/system/settings/base.nix +++ b/system/settings/base.nix @@ -6,6 +6,12 @@ ]; boot.loader.timeout = lib.mkDefault 1; + environment.systemPackages = with pkgs; [ + nix-index + cachix + zstd + ]; + programs.zsh = { histFile = "\${XDG_DATA_HOME}/zsh/history"; }; |