direnv
This commit is contained in:
parent
39be74d976
commit
6bc301694a
@ -1,10 +1,21 @@
|
|||||||
{ pkgs, lib, config, ... }:
|
{ pkgs, lib, config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
config.users.defaultUserShell = pkgs.zsh;
|
config = {
|
||||||
|
users.defaultUserShell = pkgs.zsh;
|
||||||
|
|
||||||
config.programs.thefuck.enable = true;
|
environment.systemPackages = with pkgs; [ direnv ];
|
||||||
config.programs.zsh = {
|
nix.settings = {
|
||||||
|
keep-outputs = true;
|
||||||
|
keep-derivations = true;
|
||||||
|
};
|
||||||
|
custom.impermanence.userExtraDirs.jake = [
|
||||||
|
".local/share/direnv"
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.thefuck.enable = true;
|
||||||
|
|
||||||
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
histSize = 1000000;
|
histSize = 1000000;
|
||||||
histFile = "$HOME/.zsh_history";
|
histFile = "$HOME/.zsh_history";
|
||||||
@ -21,6 +32,12 @@
|
|||||||
shellAliases = {
|
shellAliases = {
|
||||||
"nixos-rebuild" = "nixos-rebuild --flake \"/etc/nixos#${config.networking.fqdn}\"";
|
"nixos-rebuild" = "nixos-rebuild --flake \"/etc/nixos#${config.networking.fqdn}\"";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
interactiveShellInit = with pkgs; ''
|
||||||
|
eval "$(${direnv}/bin/direnv hook zsh)"
|
||||||
|
source ${nix-direnv}/share/nix-direnv/direnvrc
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user