mirror of https://git.jolheiser.com/dotnix.git
70 lines
1.1 KiB
Nix
70 lines
1.1 KiB
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./aerc.nix
|
|
./atuin.nix
|
|
./bat.nix
|
|
./bottom.nix
|
|
./eza.nix
|
|
./fzf.nix
|
|
./git.nix
|
|
./go.nix
|
|
./gpg.nix
|
|
#./helix.nix
|
|
./jq.nix
|
|
./lazygit.nix
|
|
./nushell.nix
|
|
./oh-my-posh.nix
|
|
./ssh.nix
|
|
./xdg.nix
|
|
./zoxide.nix
|
|
];
|
|
home = {
|
|
packages = with pkgs; [
|
|
# Tools
|
|
age
|
|
bitwarden-cli
|
|
cachix
|
|
duf
|
|
du-dust
|
|
fd
|
|
git-absorb
|
|
just
|
|
ripgrep
|
|
usql
|
|
|
|
# LSPs
|
|
gopls
|
|
nil
|
|
|
|
# Formatters
|
|
alejandra
|
|
gofumpt
|
|
|
|
# Flake overlays
|
|
jolheiser.gist
|
|
jolheiser.git-age
|
|
tclip
|
|
templ
|
|
jolheiser.helix
|
|
jolheiser.tmpl
|
|
jolheiser.gomodinit
|
|
];
|
|
activation.report-changes = config.lib.dag.entryAnywhere ''
|
|
${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff $oldGenPath $newGenPath
|
|
'';
|
|
stateVersion = "22.11";
|
|
};
|
|
|
|
xdg.configFile."gist/config.yaml".text = ''
|
|
username: jolheiser
|
|
password-file: ${config.age.secrets.gist-pw.path}
|
|
domain: gist.jojodev.com
|
|
'';
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|