dotfiles/homes/x86_64-linux/christopher@cobalt/config/hausgold.nix
Christopher Mühl 786af32daf
Publish my config
This is the result of ~100 commits to my NixOS config. Since I haven't
always used `agenix-rekey`, this is another initial commit so that none
of the secrets in my git history are leaked
2025-07-30 23:36:39 +02:00

29 lines
532 B
Nix

{
pkgs,
inputs,
...
}: let
#ruby = pkgs."ruby-2.5";
#bundler = pkgs.bundler.override { inherit ruby; };
in {
home.packages = with pkgs; [
# docker has to be installed globally because we have to enable virtualization
inputs.docker-compose-1.legacyPackages."x86_64-linux".docker-compose
# Ruby environment
# bundler
# ruby
bundix
# Dev environment specifics
libxcrypt # maklerportal-frontend-test-suite
postgresql
geos
# mDNS support
nssmdns
avahi
slack
];
}