File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,17 @@ Please adjust the environment variables in it and then run:
111
111
docker compose up -d
112
112
```
113
113
114
+ #### Nix
115
+
116
+ GoSƐ is available in [ Nixpkgs] ( https://github.com/NixOS/nixpgks ) as well as a flake:
117
+
118
+ ``` bash
119
+ nix profile install nixpkgs#gose
120
+
121
+ # Or via our flake
122
+ nix profile install github:stv0g/gose#gose
123
+ ```
124
+
114
125
## Configuration
115
126
116
127
GoSƐ can be configured via a configuration file and/or environment variables
Original file line number Diff line number Diff line change 35
35
] ;
36
36
} ;
37
37
38
- packages . default = pkgs . callPackage ./default.nix { } ;
38
+ packages = rec {
39
+ gose = pkgs . callPackage ./default.nix { } ;
40
+ default = gose ;
41
+ } ;
39
42
40
43
formatter = pkgs . nixfmt-rfc-style ;
41
44
}
You can’t perform that action at this time.
0 commit comments