mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-18 18:03:06 +01:00
Jo
e1bbf4856e
refactor: remove some comments feat: set VSCodium color scheme to Catppuccin Macchiato
19 lines
233 B
Nix
19 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";
|
|
}
|