├── .envrc ├── .github ├── pages.nix ├── pages.py └── workflows │ ├── ci.yml │ └── gh-pages.yml ├── .gitignore ├── .mergify.yml ├── .reuse └── dep5 ├── LICENSES └── MIT.txt ├── README.md ├── default.nix ├── flake.lock ├── flake.nix ├── hooks └── after-install.sh ├── renovate.json ├── rootfs ├── etc │ ├── nix │ │ └── nix.conf │ └── profile.d │ │ ├── nix-daemon-env.sh │ │ └── nix-env.sh └── usr │ ├── lib │ ├── environment.d │ │ ├── nix-daemon.conf │ │ └── nix.conf │ ├── systemd │ │ └── system │ │ │ ├── nix-daemon.service │ │ │ └── nix-daemon.socket │ └── tmpfiles.d │ │ └── nix-daemon.conf │ └── share │ └── user-tmpfiles.d │ └── nix-daemon.conf ├── selinux ├── Makefile ├── nix.fc └── nix.te ├── shell.nix └── treefmt.nix /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.github/pages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/.github/pages.nix -------------------------------------------------------------------------------- /.github/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/.github/pages.py -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | result* 2 | *.mod 3 | *.pp 4 | .direnv 5 | -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/.mergify.yml -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/flake.nix -------------------------------------------------------------------------------- /hooks/after-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/hooks/after-install.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/renovate.json -------------------------------------------------------------------------------- /rootfs/etc/nix/nix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/etc/nix/nix.conf -------------------------------------------------------------------------------- /rootfs/etc/profile.d/nix-daemon-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/etc/profile.d/nix-daemon-env.sh -------------------------------------------------------------------------------- /rootfs/etc/profile.d/nix-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/etc/profile.d/nix-env.sh -------------------------------------------------------------------------------- /rootfs/usr/lib/environment.d/nix-daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/usr/lib/environment.d/nix-daemon.conf -------------------------------------------------------------------------------- /rootfs/usr/lib/environment.d/nix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/usr/lib/environment.d/nix.conf -------------------------------------------------------------------------------- /rootfs/usr/lib/systemd/system/nix-daemon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/usr/lib/systemd/system/nix-daemon.service -------------------------------------------------------------------------------- /rootfs/usr/lib/systemd/system/nix-daemon.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/usr/lib/systemd/system/nix-daemon.socket -------------------------------------------------------------------------------- /rootfs/usr/lib/tmpfiles.d/nix-daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/usr/lib/tmpfiles.d/nix-daemon.conf -------------------------------------------------------------------------------- /rootfs/usr/share/user-tmpfiles.d/nix-daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/rootfs/usr/share/user-tmpfiles.d/nix-daemon.conf -------------------------------------------------------------------------------- /selinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/selinux/Makefile -------------------------------------------------------------------------------- /selinux/nix.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/selinux/nix.fc -------------------------------------------------------------------------------- /selinux/nix.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/selinux/nix.te -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/shell.nix -------------------------------------------------------------------------------- /treefmt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-installers/HEAD/treefmt.nix --------------------------------------------------------------------------------