mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-02-07 19:53:06 +01:00
17 lines
180 B
Nix
17 lines
180 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# Declare user packages.
|
|
home.packages = with pkgs; [
|
|
### Runtimes
|
|
nodejs_22
|
|
bun
|
|
|
|
### Tools
|
|
git
|
|
];
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|