19 lines
283 B
Nix
19 lines
283 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
home = {
|
|
username = "avery";
|
|
homeDirectory = "/home/avery";
|
|
stateVersion = "24.05";
|
|
packages = with pkgs; [
|
|
python3
|
|
rclone
|
|
xdg-user-dirs
|
|
xdg-utils
|
|
];
|
|
};
|
|
programs.home-manager.enable = true;
|
|
}
|