Files
nix/home/common/programs/default.nix
T
Miguel Palhas fb2dd11452 code review
2024-10-04 18:05:56 +01:00

16 lines
335 B
Nix

{ lib, config, ... }: {
imports = [ ./zsh.nix ./neovim ./rust.nix ./solidity.nix ];
programs = {
home-manager.enable = true;
git.enable = true;
fzf.enable = true;
gh.enable = true;
};
home = {
homeDirectory = lib.mkDefault "/home/${config.home.username}";
sessionPath = [ "$HOME/.local/bin" ];
};
}