├── .gitignore ├── LICENSE ├── Readme.md ├── default.nix ├── flake.lock ├── flake.nix └── systemd2nix.py /.gitignore: -------------------------------------------------------------------------------- 1 | .*/ 2 | **/__pycache__ 3 | *.service 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavHau/systemd2nix/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavHau/systemd2nix/HEAD/Readme.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavHau/systemd2nix/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavHau/systemd2nix/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavHau/systemd2nix/HEAD/flake.nix -------------------------------------------------------------------------------- /systemd2nix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavHau/systemd2nix/HEAD/systemd2nix.py --------------------------------------------------------------------------------