nixos/modules/dev/projects
..
SakoEngine
default.nix
README.md

Projects

Make a new nix file with your projects name And add all the dependencies for your project here!

{ options, config, lib, pkgs, ...}:
with lib;
let
    cfg = config.modules.dev.projects.myproject;
in
{
    options.modules.dev.projects.myproject = {
        enable = mkEnableOption false;
    };

    config = mkIf cfg.enable {
    users.users.myuser.packages = with pkgs; [
        usefulpackageone
        anotherdependency
        somethingsomethingawesomecoollibrary
    ];
  };
}