Files
nixos-config/home/common/programs/default.nix
T
Miguel Palhas 71776d4888 Fixing git commit msg
Why:

*

This change addresses the need by:

*
2024-10-05 10:54:36 +01:00

14 lines
296 B
Nix

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