configuration/home-manager/home.nix

25 lines
382 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
2024-02-27 15:44:25 +00:00
ruff
gnomeExtensions.forge
rustc
cargo
gcc
rust-jemalloc-sys
2024-02-22 16:57:05 +00:00
];
}