Compare commits
5 commits
5e7347ad26
...
f908b10435
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f908b10435 | ||
|
|
d49871079f | ||
|
|
5814eaa5f1 | ||
|
|
30264133f8 | ||
|
|
c0795d3c25 |
1 changed files with 52 additions and 0 deletions
|
|
@ -69,8 +69,56 @@
|
||||||
};
|
};
|
||||||
home-manager.users.chandler = { pkgs, ... }: {
|
home-manager.users.chandler = { pkgs, ... }: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
# applications
|
||||||
|
gimp
|
||||||
|
inkscape
|
||||||
kdePackages.kate
|
kdePackages.kate
|
||||||
|
libreoffice-qt
|
||||||
|
|
||||||
|
# command line applications
|
||||||
|
(azure-cli.withExtensions [
|
||||||
|
# azure-cli.extensions.automation
|
||||||
|
azure-cli.extensions.azure-devops
|
||||||
|
# azure-cli.extensions.bastion
|
||||||
|
# azure-cli.extensions.fleet
|
||||||
|
# azure-cli.extensions.interactive
|
||||||
|
# azure-cli.extensions.log-analytics
|
||||||
|
# azure-cli.extensions.resource-graph
|
||||||
|
# azure-cli.extensions.serial-console
|
||||||
|
# azure-cli.extensions.ssh
|
||||||
|
])
|
||||||
|
iperf
|
||||||
|
units
|
||||||
|
|
||||||
|
# command line utilities
|
||||||
|
alsa-utils
|
||||||
|
dig
|
||||||
|
file
|
||||||
|
ffmpeg
|
||||||
|
git-absorb
|
||||||
gh
|
gh
|
||||||
|
hyperfine
|
||||||
|
imagemagick
|
||||||
|
jujutsu
|
||||||
|
killall
|
||||||
|
pv
|
||||||
|
ripgrep
|
||||||
|
unzip
|
||||||
|
wl-clipboard
|
||||||
|
|
||||||
|
# ✨ AI ✨
|
||||||
|
ollama
|
||||||
|
|
||||||
|
# compilers/language utils
|
||||||
|
cargo
|
||||||
|
rustc
|
||||||
|
|
||||||
|
clang
|
||||||
|
|
||||||
|
go
|
||||||
|
go-tools
|
||||||
|
gopls
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.bash = {
|
programs.bash = {
|
||||||
|
|
@ -123,6 +171,10 @@
|
||||||
condition = "gitdir:/home/chandler/work/github-vue/";
|
condition = "gitdir:/home/chandler/work/github-vue/";
|
||||||
contents.core.sshCommand = "ssh -i ~/.ssh/github-vue";
|
contents.core.sshCommand = "ssh -i ~/.ssh/github-vue";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
condition = "gitdir:/home/chandler/projects/machine-config/";
|
||||||
|
contents.core.sshCommand = "ssh -i ~/.ssh/machine-config-deploy-key";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
hooks = {
|
hooks = {
|
||||||
pre-commit = ../git-pre-commit-hook;
|
pre-commit = ../git-pre-commit-hook;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue