18 lines
296 B
Nix
18 lines
296 B
Nix
{ 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
|
|
];
|
|
|
|
}
|