This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-07-06 19:32:19 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
2023-06-28 20:48:01 +00:00
|
|
|
imports = [
|
|
|
|
./bat.nix
|
|
|
|
./bottom.nix
|
2023-07-09 03:49:54 +00:00
|
|
|
./exa.nix
|
2023-06-28 20:48:01 +00:00
|
|
|
./firefox.nix
|
|
|
|
./fzf.nix
|
|
|
|
./gpg.nix
|
|
|
|
./git.nix
|
|
|
|
./go.nix
|
|
|
|
./helix.nix
|
|
|
|
./jq.nix
|
|
|
|
./nushell.nix
|
|
|
|
./oh-my-posh.nix
|
|
|
|
./ssh.nix
|
|
|
|
./wezterm.nix
|
|
|
|
./zoxide.nix
|
|
|
|
];
|
|
|
|
home = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
# Tools
|
|
|
|
age
|
|
|
|
bitwarden-cli
|
|
|
|
delve
|
|
|
|
duf
|
|
|
|
du-dust
|
|
|
|
fd
|
|
|
|
just
|
|
|
|
ripgrep
|
|
|
|
|
|
|
|
# LSPs
|
|
|
|
gopls
|
|
|
|
lua-language-server
|
|
|
|
marksman
|
|
|
|
nil
|
|
|
|
nodePackages.yaml-language-server
|
|
|
|
|
|
|
|
# Formatters
|
2023-07-06 19:32:19 +00:00
|
|
|
alejandra
|
2023-06-28 20:48:01 +00:00
|
|
|
black
|
|
|
|
gofumpt
|
|
|
|
nodePackages.lua-fmt
|
|
|
|
|
|
|
|
# IDEs
|
|
|
|
jetbrains.goland
|
2023-07-05 20:51:53 +00:00
|
|
|
|
|
|
|
# Personal NUR
|
|
|
|
nur.repos.jolheiser.tmpl
|
2023-06-28 20:48:01 +00:00
|
|
|
];
|
2023-07-06 16:07:17 +00:00
|
|
|
activation.report-changes = config.lib.dag.entryAnywhere ''
|
|
|
|
${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff $oldGenPath $newGenPath
|
|
|
|
'';
|
2023-06-28 20:48:01 +00:00
|
|
|
stateVersion = "22.11";
|
|
|
|
};
|
|
|
|
|
2023-07-06 19:32:19 +00:00
|
|
|
programs = {home-manager.enable = true;};
|
2023-06-28 20:48:01 +00:00
|
|
|
}
|