From 3ebe0c9fca58383d175891c3c2f49f2e9a978823 Mon Sep 17 00:00:00 2001 From: lsoriano-mcm Date: Mon, 23 Jun 2025 17:55:39 -0500 Subject: [PATCH] udp --- config.nix | 2 +- hosts/macos/darwin.nix | 3 +-- packages/git/default.nix | 4 ++-- packages/kitty/default.nix | 6 +++--- packages/zsh/default.nix | 4 ++-- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/config.nix b/config.nix index f833353..f0b94ee 100644 --- a/config.nix +++ b/config.nix @@ -1,7 +1,7 @@ { general = { Hostname = "TEXAS"; - Username = "kenji"; + Username = "lsoriano"; Timezone = "America/Chicago"; allowUnfree = true; # allows installation of commercial apps. diff --git a/hosts/macos/darwin.nix b/hosts/macos/darwin.nix index 23e11e0..450106e 100644 --- a/hosts/macos/darwin.nix +++ b/hosts/macos/darwin.nix @@ -5,12 +5,11 @@ ... }: { imports = [ - ../../system/dev/macos.nix ]; # List packages installed in system profile. To search by name, run: # $ nix-env -qaP | grep wget environment.systemPackages = with pkgs; [ - python313 + python313Full ]; # Auto upgrade nix package and the daemon service. diff --git a/packages/git/default.nix b/packages/git/default.nix index e046917..7184f9e 100644 --- a/packages/git/default.nix +++ b/packages/git/default.nix @@ -2,8 +2,8 @@ programs.git = { enable = true; extraConfig = { - user.name = "${general.gitProfile.user}"; - user.email = "${general.gitProfile.email}"; + user.name = "${general.gitProfile.User}"; + user.email = "${general.gitProfile.Email}"; init.defaultBranch = "${general.gitProfile.defaultBranch}"; }; }; diff --git a/packages/kitty/default.nix b/packages/kitty/default.nix index 46dc1ea..27863c1 100644 --- a/packages/kitty/default.nix +++ b/packages/kitty/default.nix @@ -1,4 +1,4 @@ -{terminal, ...}: { +{general, ...}: { programs.kitty = { enable = true; @@ -7,8 +7,8 @@ confirm_os_window_close = 0; window_padding_width = 10; - font_size = terminal.Size; - font_family = terminal.Font; + font_size = general.terminal.Size; + font_family = general.terminal.Font; bold_font = "auto"; italic_font = "auto"; bold_italic_font = "auto"; diff --git a/packages/zsh/default.nix b/packages/zsh/default.nix index 930298f..a450d5b 100644 --- a/packages/zsh/default.nix +++ b/packages/zsh/default.nix @@ -1,6 +1,6 @@ { pkgs, - terminal, + general, ... }: { home.packages = with pkgs; [ @@ -13,7 +13,7 @@ programs.zsh = { enableCompletion = false; syntaxHighlighting.enable = false; - shellAliases = terminal.shellAliases; + shellAliases = general.terminal.Aliases; history.size = 10000; antidote = { enable = true;