flake: tidying

This commit is contained in:
Jez Cope 2023-07-10 19:33:22 +01:00
parent 6db97a1957
commit bc09db66b2
1 changed files with 5 additions and 3 deletions

View File

@ -4,7 +4,8 @@
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.twitter-archive = {
url = "https://codeberg.org/api/v1/repos/jezcope/twitter-archive/archive/main.tar.gz";
url =
"https://codeberg.org/api/v1/repos/jezcope/twitter-archive/archive/main.tar.gz";
flake = false;
};
@ -24,7 +25,8 @@
paths = [ iosevka iosevka-aile iosevka-etoile ];
};
erambler = pkgs.callPackage ./nix/build.nix { inherit fonts twitter-archive; };
erambler =
pkgs.callPackage ./nix/build.nix { inherit fonts twitter-archive; };
inherit twitter-archive;
};
@ -39,8 +41,8 @@
in {
packages = {
inherit (pkgs) erambler iosevka iosevka-aile iosevka-etoile fonts;
default = pkgs.erambler;
};
defaultPackage = pkgs.erambler;
devShell = pkgs.callPackage ./nix/shell.nix { };
});