11 lines
175 B
Nix
11 lines
175 B
Nix
{ pkgs, ... }: {
|
|
home = {
|
|
packages = with pkgs; [
|
|
ghostty
|
|
|
|
];
|
|
file = {
|
|
".config/ghostty".source = ../ghostty;
|
|
};
|
|
};
|
|
}
|