This commit is contained in:
lsoriano-mcm
2025-06-07 11:24:52 -05:00
parent 73ece504c9
commit 0abf1447af
9 changed files with 63 additions and 57 deletions
+6 -2
View File
@@ -1,4 +1,8 @@
{pkgs, shellAliases, ...}: {
{
pkgs,
terminal,
...
}: {
programs.zoxide.enable = true;
programs.fish = {
enable = true;
@@ -8,7 +12,7 @@
zoxide init fish | source
'';
shellAliases = shellAliases;
shellAliases = terminal.shellAliases;
plugins = with pkgs.fishPlugins; [
];
+2 -2
View File
@@ -1,4 +1,4 @@
{termFont, ...}: {
{terminal, ...}: {
programs.kitty = {
enable = true;
themeFile = "Catppuccin-Mocha";
@@ -7,7 +7,7 @@
window_padding_width = 10;
font_size = 12.0;
font_family = termFont;
font_family = terminal.termFont;
bold_font = "auto";
italic_font = "auto";
bold_italic_font = "auto";
+6 -2
View File
@@ -1,4 +1,8 @@
{pkgs, shellAliases,...}: {
{
pkgs,
terminal,
...
}: {
home.packages = with pkgs; [
zoxide
oh-my-posh
@@ -28,7 +32,7 @@
];
enableCompletion = true;
syntaxHighlighting.enable = true;
shellAliases = shellAliases;
shellAliases = terminal.shellAliases;
history.size = 10000;
oh-my-zsh = {
plugins = [];