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