Signed-off-by: Michael Thomson <michael@michaelthomson.dev>
This commit is contained in:
Michael Thomson 2024-11-19 08:33:30 -05:00
parent 5a9eafc05c
commit a2ab0fce66
No known key found for this signature in database
GPG Key ID: 8EFECCD347C72F7D
3 changed files with 11 additions and 1 deletions

View File

@ -12,6 +12,8 @@
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowBroken = false; nixpkgs.config.allowBroken = false;
nix.nixPath = ["nixpkgs=${inputs.nixpkgs}"];
networking.hostName = "macbook"; networking.hostName = "macbook";
nix.settings = { nix.settings = {

View File

@ -6,7 +6,6 @@
imports = [ imports = [
../../modules/home-manager/git ../../modules/home-manager/git
../../modules/home-manager/nixvim ../../modules/home-manager/nixvim
../../modules/home-manager/wezterm
../../modules/home-manager/kitty ../../modules/home-manager/kitty
../../modules/home-manager/zsh ../../modules/home-manager/zsh
../../modules/home-manager/tmux ../../modules/home-manager/tmux

View File

@ -10,6 +10,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
alejandra alejandra
ripgrep
]; ];
programs.nixvim = { programs.nixvim = {
@ -284,6 +285,14 @@
}; };
}; };
}; };
neotest = {
enable = true;
adapters = {
jest = {
enable = true;
};
};
};
}; };
}; };
} }