nix-config/hosts/home.nix

20 lines
291 B
Nix

{ user, ... }:
{
imports = [
../modules/git
./apps.nix
];
home = {
username = "${user}";
homeDirectory = "/home/${user}";
sessionVariables = {
CARGO_TARGET_DIR = "$HOME/.target/";
};
stateVersion = "22.05";
};
programs.direnv.enable = true;
}