diff options
| author | Maxim Moskalets <Maxim.Moskalets@kaspersky.com> | 2026-05-22 23:55:35 +0300 |
|---|---|---|
| committer | Maxim Moskalets <Maxim.Moskalets@kaspersky.com> | 2026-07-22 00:11:57 +0300 |
| commit | f56b10b20dab154b986d3f1422ef8f60dc85ac1d (patch) | |
| tree | 041fca8cdafaa232e79cb32db0f41fcb417055ec /config/programs/default.nix | |
| parent | e7a40242b62735f808d77742a42c8999683334bb (diff) | |
| download | config-f56b10b20dab154b986d3f1422ef8f60dc85ac1d.tar.gz config-f56b10b20dab154b986d3f1422ef8f60dc85ac1d.zip | |
nix: introduce initial generic configurationmoskalets/nixos
Add a NixOS configuration for cgit server as initial.
Services added:
- cgit (over HTTP)
- gitolite
- git-daemon
- sshd
- fail2ban
- firewall (iptables as default backend)
Nix and NixOS used for versionability and reproducibility of the
system. As bonus, it also provides a way to easily deploy the system
on different machines.
Signed-off-by: Maxim Moskalets <Maxim.Moskalets@kaspersky.com>
Diffstat (limited to 'config/programs/default.nix')
| -rw-r--r-- | config/programs/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/programs/default.nix b/config/programs/default.nix new file mode 100644 index 0000000..73b5f39 --- /dev/null +++ b/config/programs/default.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ./neovim.nix + ]; +} |
