mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-31 19:47:15 +08:00
17 lines
392 B
Nix
17 lines
392 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
# Suckless Terminal provides good performance. Just need to increase the
|
|
# fontsize on retina display.
|
|
myst = pkgs.writeScriptBin "myst"
|
|
''
|
|
#!${pkgs.runtimeShell}
|
|
# Use fc-list to lookup font names
|
|
exec ${pkgs.st}/bin/st -f "Iosevka:pixelsize=26" $*
|
|
'';
|
|
in
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
myst
|
|
alacritty
|
|
];
|
|
}
|