add ghostty overlay to replace ghostty.
This commit is contained in:
parent
750688b2b5
commit
b2330c7a1d
3 changed files with 11 additions and 1 deletions
|
|
@ -61,7 +61,7 @@
|
||||||
qq
|
qq
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
taplo
|
taplo
|
||||||
inputs.ghostty.packages."${pkgs.system}".default
|
ghostty
|
||||||
];
|
];
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ let
|
||||||
./helix.nix
|
./helix.nix
|
||||||
./spotify.nix
|
./spotify.nix
|
||||||
./niri.nix
|
./niri.nix
|
||||||
|
./ghostty.nix
|
||||||
];
|
];
|
||||||
overlay-list = map (file: import file args) overlay-files;
|
overlay-list = map (file: import file args) overlay-files;
|
||||||
in
|
in
|
||||||
|
|
|
||||||
9
overlays/modifications/ghostty.nix
Normal file
9
overlays/modifications/ghostty.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ inputs, ... }:
|
||||||
|
final: prev:
|
||||||
|
let
|
||||||
|
inherit (final) stdenv;
|
||||||
|
inherit (stdenv.hostPlatform) system;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
ghostty = inputs.ghostty.packages."${system}".default;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue