config.nix/system/terminal.nix

9 lines
104 B
Nix

{ config, pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
kitty
];
};
}