[NixOS] Add functions autoload

This commit is contained in:
2021-08-02 03:13:44 -06:00
parent 46d938a171
commit adfc010f65
3 changed files with 51 additions and 0 deletions

42
nixos/environment.nix Normal file
View File

@@ -0,0 +1,42 @@
{ config, pkgs, options, lib, ... }:
with lib;
{
options = {
dotfiles-directory = mkOption {
type = types.str;
default = "/home/imalison/dotfiles";
};
};
config = let libDir = "${config.dotfiles-directory}/dotfiles/lib";
in {
# Shell configuration
programs.zsh = {
enable = true;
syntaxHighlighting = {
enable = true;
};
ohMyZsh = {
enable = true;
plugins = [ "git" "sudo" "pip" ];
};
spaceship-prompt.enable = true;
shellInit = ''
fpath+="${libDir}/functions"
for file in "${libDir}/functions/"*
do
autoload "''${file##*/}"
done
'';
};
environment = {
homeBinInPath = true;
localBinInPath = true;
extraInit = ''
export PATH="${libDir}/bin:$PATH"
export PATH="${libDir}/functions:$PATH"
'';
};
};
}