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