nix-config/homes/x86_64-linux/cyn@absolutesolver/default.nix
Jo 57d067d501 feat(modules): add server archetype
feat: WIP add "absolutesolver" system and "cyn" user *wink wink*
refactor: clean up some comments and remove empty lines
2024-09-18 21:21:48 +02:00

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";
}