2024-08-01 18:27:47 +00:00
|
|
|
{ pkgs, config, ... }:
|
2023-09-01 03:34:54 +00:00
|
|
|
{
|
|
|
|
imports = [
|
2023-12-07 04:08:38 +00:00
|
|
|
./aerc.nix
|
2024-01-21 21:58:27 +00:00
|
|
|
./atuin.nix
|
2023-09-01 03:34:54 +00:00
|
|
|
./bat.nix
|
|
|
|
./bottom.nix
|
2023-09-14 17:39:27 +00:00
|
|
|
./eza.nix
|
2023-09-01 03:34:54 +00:00
|
|
|
./fzf.nix
|
|
|
|
./git.nix
|
2023-09-01 04:09:18 +00:00
|
|
|
./go.nix
|
|
|
|
./gpg.nix
|
2024-07-10 14:58:01 +00:00
|
|
|
./jj.nix
|
2023-09-01 03:34:54 +00:00
|
|
|
./lazygit.nix
|
2024-08-08 00:19:51 +00:00
|
|
|
./llm.nix
|
2024-12-14 04:21:46 +00:00
|
|
|
./lsp.nix
|
2023-09-01 03:34:54 +00:00
|
|
|
./nushell.nix
|
|
|
|
./oh-my-posh.nix
|
2024-07-18 21:33:56 +00:00
|
|
|
./senpai.nix
|
2023-09-01 03:34:54 +00:00
|
|
|
./ssh.nix
|
|
|
|
./xdg.nix
|
|
|
|
./zoxide.nix
|
|
|
|
];
|
|
|
|
home = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
age
|
|
|
|
bitwarden-cli
|
2024-03-08 23:32:36 +00:00
|
|
|
cachix
|
2023-09-01 03:34:54 +00:00
|
|
|
duf
|
|
|
|
du-dust
|
|
|
|
fd
|
|
|
|
just
|
|
|
|
ripgrep
|
2023-09-01 04:09:18 +00:00
|
|
|
usql
|
2023-09-01 03:34:54 +00:00
|
|
|
|
2023-09-05 21:23:08 +00:00
|
|
|
tclip
|
2023-12-11 16:40:14 +00:00
|
|
|
templ
|
2023-09-24 06:28:57 +00:00
|
|
|
jolheiser.helix
|
2023-12-22 01:12:09 +00:00
|
|
|
jolheiser.gomodinit
|
2024-06-20 00:31:48 +00:00
|
|
|
jolheiser.cfg
|
2024-09-25 15:48:40 +00:00
|
|
|
jolheiser.spectre
|
2023-09-01 03:34:54 +00:00
|
|
|
];
|
|
|
|
activation.report-changes = config.lib.dag.entryAnywhere ''
|
|
|
|
${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff $oldGenPath $newGenPath
|
|
|
|
'';
|
|
|
|
stateVersion = "22.11";
|
|
|
|
};
|
|
|
|
|
2024-03-08 03:00:45 +00:00
|
|
|
programs.home-manager.enable = true;
|
2023-09-01 03:34:54 +00:00
|
|
|
}
|