mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-21 06:39:09 -04:00
17 lines
211 B
Nix
17 lines
211 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# python
|
|
poetry
|
|
python313
|
|
ruff
|
|
# nix
|
|
nix-init
|
|
nix-output-monitor
|
|
nix-prefetch
|
|
nix-tree
|
|
nixfmt-rfc-style
|
|
treefmt
|
|
];
|
|
}
|