dotfiles/.config/nixpkgs/home.nix
2022-11-02 21:58:15 +01:00

25 lines
595 B
Nix

{ pkgs, ...}: {
home.packages = with pkgs; [
direnv
nix-direnv
];
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";
};
enableCompletion = true;
plugins = [];
};
direnv.enable = true;
direnv.nix-direnv.enable = true;
#direnv.nix-direnv.enableFlakes = true;
};
}