├── .gitignore ├── CONTRIBUTING.md ├── ChangeLog.md ├── LICENSE ├── README.md ├── all-modules.nix ├── bors.toml ├── dev ├── flake-module.nix ├── flake.lock ├── flake.nix └── tests │ ├── README.md │ ├── eval-tests.nix │ └── template.nix ├── examples ├── project-commands │ ├── Hello.avdl │ ├── README.md │ ├── flake.lock │ └── flake.nix └── shell-environments │ ├── README.md │ ├── flake.lock │ └── flake.nix ├── extras ├── bundlers.nix ├── easyOverlay.nix ├── flakeModules.nix ├── modules.nix └── partitions.nix ├── flake.lock ├── flake.nix ├── lib.nix ├── lib └── memoize │ ├── bytes.dat │ ├── measure-bytes-per-char.nix │ ├── memoize.nix │ └── test.nix ├── modules ├── apps.nix ├── checks.nix ├── debug.nix ├── devShells.nix ├── flake.nix ├── formatter.nix ├── legacyPackages.nix ├── moduleWithSystem.nix ├── nixosConfigurations.nix ├── nixosModules.nix ├── nixpkgs.nix ├── overlays.nix ├── packages.nix ├── perSystem.nix ├── transposition.nix └── withSystem.nix ├── shell.nix ├── template ├── default │ └── flake.nix ├── multi-module │ ├── flake.nix │ └── hello │ │ └── flake-module.nix ├── package │ ├── flake.nix │ └── hello │ │ ├── hello.sh │ │ ├── package.nix │ │ └── test.nix └── unfree │ └── flake.nix └── vendor └── flake-compat ├── COPYING ├── README.md └── default.nix /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/README.md -------------------------------------------------------------------------------- /all-modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/all-modules.nix -------------------------------------------------------------------------------- /bors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/bors.toml -------------------------------------------------------------------------------- /dev/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/dev/flake-module.nix -------------------------------------------------------------------------------- /dev/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/dev/flake.lock -------------------------------------------------------------------------------- /dev/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/dev/flake.nix -------------------------------------------------------------------------------- /dev/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/dev/tests/README.md -------------------------------------------------------------------------------- /dev/tests/eval-tests.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/dev/tests/eval-tests.nix -------------------------------------------------------------------------------- /dev/tests/template.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/dev/tests/template.nix -------------------------------------------------------------------------------- /examples/project-commands/Hello.avdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/examples/project-commands/Hello.avdl -------------------------------------------------------------------------------- /examples/project-commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/examples/project-commands/README.md -------------------------------------------------------------------------------- /examples/project-commands/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/examples/project-commands/flake.lock -------------------------------------------------------------------------------- /examples/project-commands/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/examples/project-commands/flake.nix -------------------------------------------------------------------------------- /examples/shell-environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/examples/shell-environments/README.md -------------------------------------------------------------------------------- /examples/shell-environments/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/examples/shell-environments/flake.lock -------------------------------------------------------------------------------- /examples/shell-environments/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/examples/shell-environments/flake.nix -------------------------------------------------------------------------------- /extras/bundlers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/extras/bundlers.nix -------------------------------------------------------------------------------- /extras/easyOverlay.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/extras/easyOverlay.nix -------------------------------------------------------------------------------- /extras/flakeModules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/extras/flakeModules.nix -------------------------------------------------------------------------------- /extras/modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/extras/modules.nix -------------------------------------------------------------------------------- /extras/partitions.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/extras/partitions.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/flake.nix -------------------------------------------------------------------------------- /lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/lib.nix -------------------------------------------------------------------------------- /lib/memoize/bytes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/lib/memoize/bytes.dat -------------------------------------------------------------------------------- /lib/memoize/measure-bytes-per-char.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/lib/memoize/measure-bytes-per-char.nix -------------------------------------------------------------------------------- /lib/memoize/memoize.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/lib/memoize/memoize.nix -------------------------------------------------------------------------------- /lib/memoize/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/lib/memoize/test.nix -------------------------------------------------------------------------------- /modules/apps.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/apps.nix -------------------------------------------------------------------------------- /modules/checks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/checks.nix -------------------------------------------------------------------------------- /modules/debug.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/debug.nix -------------------------------------------------------------------------------- /modules/devShells.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/devShells.nix -------------------------------------------------------------------------------- /modules/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/flake.nix -------------------------------------------------------------------------------- /modules/formatter.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/formatter.nix -------------------------------------------------------------------------------- /modules/legacyPackages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/legacyPackages.nix -------------------------------------------------------------------------------- /modules/moduleWithSystem.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/moduleWithSystem.nix -------------------------------------------------------------------------------- /modules/nixosConfigurations.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/nixosConfigurations.nix -------------------------------------------------------------------------------- /modules/nixosModules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/nixosModules.nix -------------------------------------------------------------------------------- /modules/nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/nixpkgs.nix -------------------------------------------------------------------------------- /modules/overlays.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/overlays.nix -------------------------------------------------------------------------------- /modules/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/packages.nix -------------------------------------------------------------------------------- /modules/perSystem.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/perSystem.nix -------------------------------------------------------------------------------- /modules/transposition.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/transposition.nix -------------------------------------------------------------------------------- /modules/withSystem.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/modules/withSystem.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/shell.nix -------------------------------------------------------------------------------- /template/default/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/template/default/flake.nix -------------------------------------------------------------------------------- /template/multi-module/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/template/multi-module/flake.nix -------------------------------------------------------------------------------- /template/multi-module/hello/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/template/multi-module/hello/flake-module.nix -------------------------------------------------------------------------------- /template/package/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/template/package/flake.nix -------------------------------------------------------------------------------- /template/package/hello/hello.sh: -------------------------------------------------------------------------------- 1 | #!@shell@ 2 | 3 | echo Hello world 4 | -------------------------------------------------------------------------------- /template/package/hello/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/template/package/hello/package.nix -------------------------------------------------------------------------------- /template/package/hello/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/template/package/hello/test.nix -------------------------------------------------------------------------------- /template/unfree/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/template/unfree/flake.nix -------------------------------------------------------------------------------- /vendor/flake-compat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/vendor/flake-compat/COPYING -------------------------------------------------------------------------------- /vendor/flake-compat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/vendor/flake-compat/README.md -------------------------------------------------------------------------------- /vendor/flake-compat/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hercules-ci/flake-parts/HEAD/vendor/flake-compat/default.nix --------------------------------------------------------------------------------