mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
15 lines
227 B
Nix
15 lines
227 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
service.terminal.default = lib.getExe pkgs.ghostty;
|
|
environment.systemPackages = with pkgs; [
|
|
ghostty
|
|
];
|
|
user.home-manager = {
|
|
programs.ghostty = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|