From 3977ad1c379b952fd4a987824c4475a3bc480071 Mon Sep 17 00:00:00 2001 From: guangtao Date: Wed, 20 Sep 2023 23:52:50 -0700 Subject: [PATCH] feat: add presets&suits --- lib/mkHome.nix | 2 +- nixos/homeProfiles/shell.nix | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/mkHome.nix b/lib/mkHome.nix index ae1f623..8f71691 100644 --- a/lib/mkHome.nix +++ b/lib/mkHome.nix @@ -22,7 +22,7 @@ in home-manager.users.${user} = { imports = lib.flatten suites; home.stateVersion = - if pkgs.stdenv.isDarwin then pkgs.lib.trivial.release else "23.05"; + if pkgs.stdenv.isDarwin then pkgs.lib.trivial.release else "23.11"; }; users.users.${user} = { shell = pkgs."${shell}"; diff --git a/nixos/homeProfiles/shell.nix b/nixos/homeProfiles/shell.nix index 70c8fa1..4fc1593 100644 --- a/nixos/homeProfiles/shell.nix +++ b/nixos/homeProfiles/shell.nix @@ -2,5 +2,9 @@ let presets = root.presets; in { - default = [ presets.zoxide ]; + default = [ + presets.zoxide + presets.fzf + presets.direnv + ]; }