2023-09-01 03:34:54 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
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
|
2023-09-22 00:57:36 +00:00
|
|
|
#./helix.nix
|
2023-09-01 03:34:54 +00:00
|
|
|
./jq.nix
|
|
|
|
./lazygit.nix
|
|
|
|
./nushell.nix
|
|
|
|
./oh-my-posh.nix
|
|
|
|
./ssh.nix
|
|
|
|
./xdg.nix
|
|
|
|
./zoxide.nix
|
|
|
|
];
|
|
|
|
home = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
# Tools
|
|
|
|
age
|
|
|
|
bitwarden-cli
|
2024-03-08 23:32:36 +00:00
|
|
|
cachix
|
2023-09-01 03:34:54 +00:00
|
|
|
duf
|
|
|
|
du-dust
|
|
|
|
fd
|
2024-02-17 22:29:23 +00:00
|
|
|
git-absorb
|
2023-09-01 03:34:54 +00:00
|
|
|
just
|
|
|
|
ripgrep
|
2023-09-01 04:09:18 +00:00
|
|
|
usql
|
2023-09-01 03:34:54 +00:00
|
|
|
|
|
|
|
# LSPs
|
2023-09-01 04:09:18 +00:00
|
|
|
gopls
|
2023-09-01 03:34:54 +00:00
|
|
|
nil
|
|
|
|
|
|
|
|
# Formatters
|
|
|
|
alejandra
|
2023-09-01 04:09:18 +00:00
|
|
|
gofumpt
|
|
|
|
|
2023-09-05 21:23:08 +00:00
|
|
|
# Flake overlays
|
2023-11-28 04:59:26 +00:00
|
|
|
jolheiser.gist
|
2023-11-14 01:38:36 +00:00
|
|
|
jolheiser.git-age
|
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.tmpl
|
|
|
|
jolheiser.gomodinit
|
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";
|
|
|
|
};
|
|
|
|
|
2023-11-28 04:59:26 +00:00
|
|
|
xdg.configFile."gist/config.yaml".text = ''
|
|
|
|
username: jolheiser
|
|
|
|
password-file: /run/agenix/gist-pw
|
|
|
|
domain: gist.jojodev.com
|
|
|
|
'';
|
|
|
|
|
2024-03-08 03:00:45 +00:00
|
|
|
programs.home-manager.enable = true;
|
2023-09-01 03:34:54 +00:00
|
|
|
}
|