add icecube and git config

This commit is contained in:
Jonathan Dönszelmann 2024-09-17 10:10:18 +02:00
parent e767060559
commit 8a9b1f2529
No known key found for this signature in database
8 changed files with 70 additions and 30 deletions

View file

@ -9,16 +9,17 @@
../../programs/kanata
../../programs/kitty
../../programs/tmux
../../programs/git
];
# use the system-installed version of kitty on arch
# something graphics related crashes otherwise
programs.kitty.package = pkgs.stdenv.mkDerivation {
name = "kitty";
src = ./.;
installPhase = ''
mkdir -p $out/bin
echo "#!/usr/bin/env bash\nexec /usr/bin/kitty" > $out/bin/kitty;
'';
name = "kitty";
src = ./.;
installPhase = ''
mkdir -p $out/bin
echo "#!/usr/bin/env bash\nexec /usr/bin/kitty" > $out/bin/kitty;
'';
};
}