├── .gitignore ├── README.md ├── flake.lock ├── flake.nix ├── modules └── autoaspm.nix └── pkgs ├── autoaspm.nix └── autoaspm.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/AutoASPM/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/AutoASPM/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/AutoASPM/HEAD/flake.nix -------------------------------------------------------------------------------- /modules/autoaspm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/AutoASPM/HEAD/modules/autoaspm.nix -------------------------------------------------------------------------------- /pkgs/autoaspm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/AutoASPM/HEAD/pkgs/autoaspm.nix -------------------------------------------------------------------------------- /pkgs/autoaspm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notthebee/AutoASPM/HEAD/pkgs/autoaspm.py --------------------------------------------------------------------------------