Skip to content

Commit

Permalink
Order packages
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterStolz committed Dec 11, 2024
1 parent 987c8bc commit 083c83b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 26 deletions.
5 changes: 4 additions & 1 deletion home-manager/fish.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
set fish_greeting # Disable greeting
set -gx GPG_TTY (tty)
set -gx LD_LIBRARY_PATH $NIX_LD_LIBRARY_PATH
'';
'' + (if pkgs.stdenv.isDarwin then
''
fish_add_path /opt/homebrew/bin
'' else "");
shellAliases = {
vim = "nvim";
hm = "home-manager";
Expand Down
52 changes: 27 additions & 25 deletions home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,40 +9,42 @@ let
username = builtins.getEnv "USER";

commonPackages = with pkgs; [
pinentry-tty
python312Full
keepassxc
nixfmt-rfc-style
htop
kubectl
unzip
redis
ansible
argocd
cmctl
ctlptl
devbox
dig
libargon2
hcloud
ffmpeg_7
jq
devbox
file
gh
gnupg
opentofu
ansible
hadolint
hcloud
htop
imagemagick
jq
k3d
linkerd
gh
keepassxc
kind
kubectl
kubernetes-helm
s3cmd
tilt
postgresql_16
argocd
cmctl
libargon2
linkerd
micromamba
imagemagick
hadolint
pre-commit
nix-index
nixfmt-rfc-style
nodejs_20
opentofu
pinentry-tty
postgresql_16
pre-commit
python312Full
redis
s3cmd
tilt
unzip
yarn
nix-index
];

# Packages only available or relevant on Linux
Expand Down

0 comments on commit 083c83b

Please sign in to comment.