mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
16 lines
227 B
Nix
16 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;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|