File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,12 @@ cargo install gitlogue
3636pacman -S gitlogue
3737```
3838
39+ ### Using Nix
40+
41+ ``` bash
42+ nix run github:unhappychoice/gitlogue
43+ ```
44+
3945### From Source
4046
4147``` bash
Original file line number Diff line number Diff line change @@ -60,7 +60,25 @@ cargo install gitlogue
6060
6161This will download, compile, and install the latest version.
6262
63- ### Method 5: Download Pre-built Binaries
63+ ### Method 5: Using Nix
64+
65+ Run directly without installation:
66+
67+ ``` bash
68+ nix run github:unhappychoice/gitlogue
69+ ```
70+
71+ Or add to your flake inputs:
72+
73+ ``` nix
74+ {
75+ inputs.gitlogue.url = "github:unhappychoice/gitlogue";
76+ }
77+ ```
78+
79+ Then use ` inputs.gitlogue.packages.${system}.default ` in your configuration.
80+
81+ ### Method 6: Download Pre-built Binaries
6482
6583Pre-built binaries for multiple platforms are available in the [ Releases] ( https://github.com/unhappychoice/gitlogue/releases ) section.
6684
@@ -84,7 +102,7 @@ Pre-built binaries for multiple platforms are available in the [Releases](https:
84102 sudo mv gitlogue /usr/local/bin/
85103 ```
86104
87- ### Method 6 : From Source
105+ ### Method 7 : From Source
88106
89107If you want to build the latest development version or contribute to the project:
90108
You can’t perform that action at this time.
0 commit comments