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

@ -1,18 +0,0 @@
{pkgs, ...}: {
home = {
packages = with pkgs; [
warp-terminal
kitty
onefetch
hyfetch
neofetch
];
file = {
kitty = {
recursive = true;
source = ../../../dotfiles/kitty;
target = "./.config/kitty";
};
};
};
}

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

View file

@ -35,7 +35,7 @@
../homeModules/rofi.nix
../homeModules/social.nix
../homeModules/sops.nix
../homeModules/terminal.nix
../homeModules/terminal
../homeModules/virt.nix
../homeModules/web.nix
../homeModules/zsh.nix