From d5886c261120f43d6829b12696ca2a9c5dbed5f9 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Thu, 1 Feb 2024 10:00:03 -0800 Subject: [PATCH] map enable don't work --- users/tao/home.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/users/tao/home.nix b/users/tao/home.nix index 84da25d..60c1059 100644 --- a/users/tao/home.nix +++ b/users/tao/home.nix @@ -6,27 +6,33 @@ in ./helix.nix ]; - programs = enablePrograms { + # programs = enablePrograms { + programs = { git = { + enable = true; userName = "Tao Tien"; userEmail = "29749622+taotien@users.noreply.github.com"; }; nushell = { + enable = true; configFile.source = ./config.nu; envFile.source = ./env.nu; }; - starshell = { - enableNuShellIntegration = true; - settings = builtins.fromTOML (builtins.readFile ./starship.nix); + starship = { + enable = true; + enableNushellIntegration = true; + settings = builtins.fromTOML (builtins.readFile ./starship.toml); }; wezterm = { + enable = true; extraConfig = builtins.readFile ./wezterm.lua; }; zoxide = { + enable = true; enableNushellIntegration = true; }; };