mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 00:06:09 +03:00
Merge pull request #2598 from NicoElbers/main
docs: fix the nixos install instructions
This commit is contained in:
@ -789,7 +789,14 @@ Below is an example:
|
|||||||
#
|
#
|
||||||
# Instead, either run `nix flake update` or `nixos-rebuild build`
|
# Instead, either run `nix flake update` or `nixos-rebuild build`
|
||||||
# as the current user, and then run `sudo nixos-rebuild switch`.
|
# as the current user, and then run `sudo nixos-rebuild switch`.
|
||||||
ghostty.url = "git+ssh://git@github.com/ghostty-org/ghostty";
|
ghostty = {
|
||||||
|
url = "git+ssh://git@github.com/ghostty-org/ghostty";
|
||||||
|
|
||||||
|
# NOTE: The below 2 lines are only required on nixos-unstable,
|
||||||
|
# if you're on stable, they may break your build
|
||||||
|
inputs.nixpkgs-stable.follows = "nixpkgs";
|
||||||
|
inputs.nixpkgs-unstable.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { nixpkgs, ghostty, ... }: {
|
outputs = { nixpkgs, ghostty, ... }: {
|
||||||
|
Reference in New Issue
Block a user