├── .github └── workflows │ ├── render-options.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── docs ├── .gitignore ├── book.toml ├── custom.css ├── flake.lock ├── flake.nix └── src │ ├── SUMMARY.md │ ├── examples.md │ ├── impermanence-comparison.md │ ├── impermanence-migration.md │ ├── impermanence.md │ └── library-and-testing.md ├── flake.nix ├── lib.nix ├── module.nix ├── options.nix └── tests ├── appliance-image-verity.nix ├── basic.nix ├── firstboot.nix ├── flake.lock └── flake.nix /.github/workflows/render-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/.github/workflows/render-options.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/TODO.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | src/README.md 3 | -------------------------------------------------------------------------------- /docs/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/book.toml -------------------------------------------------------------------------------- /docs/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/custom.css -------------------------------------------------------------------------------- /docs/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/flake.lock -------------------------------------------------------------------------------- /docs/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/flake.nix -------------------------------------------------------------------------------- /docs/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/src/SUMMARY.md -------------------------------------------------------------------------------- /docs/src/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/src/examples.md -------------------------------------------------------------------------------- /docs/src/impermanence-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/src/impermanence-comparison.md -------------------------------------------------------------------------------- /docs/src/impermanence-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/src/impermanence-migration.md -------------------------------------------------------------------------------- /docs/src/impermanence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/src/impermanence.md -------------------------------------------------------------------------------- /docs/src/library-and-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/docs/src/library-and-testing.md -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/flake.nix -------------------------------------------------------------------------------- /lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/lib.nix -------------------------------------------------------------------------------- /module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/module.nix -------------------------------------------------------------------------------- /options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/options.nix -------------------------------------------------------------------------------- /tests/appliance-image-verity.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/tests/appliance-image-verity.nix -------------------------------------------------------------------------------- /tests/basic.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/tests/basic.nix -------------------------------------------------------------------------------- /tests/firstboot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/tests/firstboot.nix -------------------------------------------------------------------------------- /tests/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/tests/flake.lock -------------------------------------------------------------------------------- /tests/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/preservation/HEAD/tests/flake.nix --------------------------------------------------------------------------------