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

View file

@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./gui.nix
./cli.nix
];
}

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
imports = [
./kitty.nix
./warp.nix
];
}

View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
kitty
];
file = {
kitty = {
recursive = true;
source = ../../../dotfiles/kitty;
target = "./.config/kitty";
};
};
shellAliases = {
"icat" = "kitten icat";
};
};
}

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home = {
packages = with pkgs; [
warp-terminal
];
};
}