mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-18 18:03:06 +01:00
Jo
57d067d501
feat: WIP add "absolutesolver" system and "cyn" user *wink wink* refactor: clean up some comments and remove empty lines
20 lines
243 B
Nix
20 lines
243 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
namespace,
|
|
...
|
|
}: with lib; with lib.${namespace};
|
|
{
|
|
# Declare user packages.
|
|
home.packages = with pkgs; [
|
|
### Runtimes
|
|
nodejs_22
|
|
bun
|
|
|
|
### Tools
|
|
git
|
|
];
|
|
|
|
home.stateVersion = "24.05";
|
|
}
|