nixos-config/features/desktopish/light-terminal.nix
Sridhar Ratnakumar 404ea984b1 xmobar hls
2021-11-20 14:08:10 -05:00

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
];
}