configuration/home-manager/home.nix

18 lines
296 B
Nix
Raw Normal View History

2024-02-22 16:57:05 +00:00
{ config, pkgs, ... }:
{
programs.home-manager.enable = true;
home.username = "valberg";
home.homeDirectory = "/home/valberg";
home.stateVersion = "23.11";
home.packages = with pkgs; [
ansible
python311Packages.tox
python311Packages.virtualenv
pipx
zoxide
];
}