1
0
Fork 0
NixOS/common/home.nix
2024-04-03 23:27:21 +02:00

14 lines
377 B
Nix

{ pkgs, config, inputs, ... }: {
home = {
username = "avery";
homeDirectory = "/home/avery";
stateVersion = "24.05";
packages = with pkgs; [ python3 rclone xdg-utils ];
sessionVariables = {
EDITOR = "nvim";
DOTNET_ROOT = "${pkgs.dotnet-sdk_7}";
};
sessionPath = [ "$HOME/.dotnet/tools" ];
};
programs.home-manager.enable = true;
}