Skip to content

Commit

Permalink
feat(doc): Add Nix installation option
Browse files Browse the repository at this point in the history
Signed-off-by: Steffen Vogel <[email protected]>
  • Loading branch information
stv0g committed Nov 7, 2024
1 parent eb16ed3 commit 9630831
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,17 @@ Please adjust the environment variables in it and then run:
docker compose up -d
```

#### Nix

GoSƐ is available in [Nixpkgs](https://github.com/NixOS/nixpgks) as well as a flake:

```bash
nix profile install nixpkgs#gose

# Or via our flake
nix profile install github:stv0g/gose#gose
```

## Configuration

GoSƐ can be configured via a configuration file and/or environment variables
Expand Down
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@
];
};

packages.default = pkgs.callPackage ./default.nix { };
packages = rec {
gose = pkgs.callPackage ./default.nix { };
default = gose;
};

formatter = pkgs.nixfmt-rfc-style;
}
Expand Down

0 comments on commit 9630831

Please sign in to comment.