1
0
Fork 0

Remove nixFlakes alias

This commit is contained in:
Malte 2022-11-24 03:24:32 +01:00
parent 17b677100e
commit a6eca47625
3 changed files with 3 additions and 4 deletions

View file

@ -17,7 +17,7 @@ in [
Research = {
Zotero = fork "zotero";
Open = fork "evince ~/git/promotion/out/print.pdf";
Build = "sh -c 'cd ~/git/promotion; flix develop -c flix run'";
Build = "sh -c 'cd ~/git/promotion; nix develop -c nix run'";
Directory = fork "footclient -d ~/git/promotion";
Edit = edit_dir "~/git/promotion";
};

View file

@ -15,9 +15,9 @@
if [[ -e "flake.nix" ]]; then
echo "Flake detected."
echo "Running 'flake check'"
${pkgs.nixFlakes}/bin/flix flake check
${pkgs.nix}/bin/nix flake check
echo "Running 'nix build'"
${pkgs.nixFlakes}/bin/flix build $FLAGS
${pkgs.nix}/bin/nix build $FLAGS
else
echo "Building default.nix"
nix-build $FLAGS

View file

@ -67,7 +67,6 @@ self: super: {
fdroidserver
jq
cachix
nixFlakes
;
};