nix-darwin/home/default.nix
2026-03-15 02:49:46 +09:00

41 lines
666 B
Nix
Executable file

{
pkgs,
username,
...
}: {
imports = [
./fd.nix
./fzf.nix
./gh.nix
./git.nix
./nvf
./ripgrep.nix
./starship.nix
./zoxide.nix
./zsh.nix
./eza.nix
./jq.nix
];
home = {
username = username;
homeDirectory = "/Users/${username}";
stateVersion = "25.11";
packages = with pkgs; [
tree
yq-go
# nix-search-tv
(writeShellApplication {
name = "ns";
runtimeInputs = with pkgs; [
fzf
nix-search-tv
];
text = builtins.readFile "${pkgs.nix-search-tv.src}/nixpkgs.sh";
})
];
};
programs.home-manager.enable = true;
}