├── .envrc ├── .github ├── dependabot.yml └── workflows │ └── auto-merge.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── default.nix ├── flake.lock ├── flake.nix ├── modules └── envfs.nix ├── nixos-example.nix ├── nixos-test.nix ├── scripts └── create-release.sh ├── src ├── fs.rs ├── logger.rs ├── main.rs ├── result.rs └── setrlimit.rs └── treefmt.nix /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/.github/workflows/auto-merge.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.history 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/flake.nix -------------------------------------------------------------------------------- /modules/envfs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/modules/envfs.nix -------------------------------------------------------------------------------- /nixos-example.nix: -------------------------------------------------------------------------------- 1 | { 2 | imports = [ ./modules/envfs.nix ]; 3 | } 4 | -------------------------------------------------------------------------------- /nixos-test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/nixos-test.nix -------------------------------------------------------------------------------- /scripts/create-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/scripts/create-release.sh -------------------------------------------------------------------------------- /src/fs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/src/fs.rs -------------------------------------------------------------------------------- /src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/src/logger.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/src/result.rs -------------------------------------------------------------------------------- /src/setrlimit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/src/setrlimit.rs -------------------------------------------------------------------------------- /treefmt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mic92/envfs/HEAD/treefmt.nix --------------------------------------------------------------------------------