dotfiles/.config/nixpkgs/home.nix
2023-04-08 16:59:40 +02:00

44 lines
1.2 KiB
Nix

{ pkgs, ...}: {
home.packages = with pkgs; [
direnv
nix-direnv
];
home = {
stateVersion = "22.05";
username = "grimhilt";
homeDirectory = "/home/grimhilt";
};
programs = {
zsh = {
enable = true;
shellAliases = {
conf = "vim /etc/nixos/configuration.nix";
touchSens = "xinput --set-prop 14 'libinput Accel Speed'";
cShell = "nix-shell ~/.config/nixshell/c.nix";
clrShell = "cat /dev/null > ~/.bash_history && history -c";
nextsync = "/home/grimhilt/Documents/prog/c/nextsync/nextsync";
};
enableCompletion = true;
plugins = [
{
name = "zsh-nix-shell";
file = "nix-shell.plugin.zsh";
src = pkgs.fetchFromGitHub {
owner = "chisui";
repo = "zsh-nix-shell";
rev = "v0.5.0";
sha256 = "0za4aiwwrlawnia4f29msk822rj9bgcygw6a8a6iikiwzjjz0g91";
};
}
];
};
direnv.enable = true;
direnv.nix-direnv.enable = true;
#direnv.nix-direnv.enableFlakes = true;
};
}