Skip to content

Commit

Permalink
feat: add presets&suits
Browse files Browse the repository at this point in the history
  • Loading branch information
GTrunSec committed Sep 21, 2023
1 parent df60e69 commit 3977ad1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/mkHome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}";
Expand Down
6 changes: 5 additions & 1 deletion nixos/homeProfiles/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@ let
presets = root.presets;
in
{
default = [ presets.zoxide ];
default = [
presets.zoxide
presets.fzf
presets.direnv
];
}

0 comments on commit 3977ad1

Please sign in to comment.