refactor terminal.nix into cli and gui

This commit is contained in:
sadan 2025-03-19 18:14:50 -04:00
parent 81503ad83f
commit 792458043d
No known key found for this signature in database
7 changed files with 51 additions and 19 deletions

View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
onefetch
hyfetch
neofetch
];
};
}