mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
47 lines
706 B
Nix
Executable file
47 lines
706 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
|
|
./lazygit.nix
|
|
./mise.nix
|
|
./terminal.nix
|
|
./bat.nix
|
|
./aerospace.nix
|
|
./sops.nix
|
|
./ssh.nix
|
|
# TODO ./claude-code.nix
|
|
# TODO ./codex.nix
|
|
# TODO ./gemini-cli.nix
|
|
];
|
|
|
|
home = {
|
|
inherit username;
|
|
homeDirectory = "/Users/${username}";
|
|
stateVersion = "25.11";
|
|
|
|
# packages that are not available via programs
|
|
packages = with pkgs; [
|
|
raycast
|
|
ice-bar
|
|
keka
|
|
stats
|
|
iina
|
|
];
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|