9 lines
126 B
Nix
9 lines
126 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
cool-retro-term # Retro-style terminal
|
||
|
st # Suckless terminal
|
||
|
];
|
||
|
}
|