-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
5 deletions.
There are no files selected for viewing
20 changes: 15 additions & 5 deletions
20
website/content/en/docs/setup/installation/operating-systems/nixos.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
--- | ||
title: Install Vector on NixOS | ||
short: NixOS | ||
supported_installers: ["Nix", "Vector installer", "Docker"] | ||
weight: 6 | ||
--- | ||
|
||
[Debian], also known as Debian GNU/Linux, is a Linux distribution composed of free and open-source software, developed by the community-supported Debian Project. This page covers installing and managing Vector on the Debian operating system. | ||
[NixOS] is a Linux distribution built on top of the Nix package manager. This | ||
page covers installing and managing Vector on NixOS. | ||
|
||
## Supported installers | ||
Nixpkgs has a [community maintained package][nixpkg-vector] for Vector. It can | ||
be installed on a NixOS system with the following snippet in | ||
`configuration.nix`: | ||
|
||
{{< supported-installers >}} | ||
``` | ||
environment.systemPackages = [ | ||
pkgs.vector | ||
]; | ||
``` | ||
|
||
[debian]: https://debian.org | ||
See also the [nix] package page. | ||
|
||
[nixos]: https://www.nixos.org | ||
[nixpkg-vector]: https://github.com/NixOS/nixpkgs/tree/master/pkgs/tools/misc/vector | ||
[nix]: /docs/setup/installation/package-managers/nix |