Initial CV Lillian
This commit is contained in:
commit
22d390104a
4 changed files with 372 additions and 0 deletions
28
flake.nix
Normal file
28
flake.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
description = "A very basic typst flake";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
}: let
|
||||
systems = ["x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"];
|
||||
eachSystem = f:
|
||||
nixpkgs.lib.genAttrs systems (system:
|
||||
f nixpkgs.legacyPackages.${system});
|
||||
in {
|
||||
devShells = eachSystem (pkgs: {
|
||||
default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
typst
|
||||
tinymist
|
||||
typstPackages.fontawesome
|
||||
font-awesome
|
||||
];
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue