rendercv flake init

This commit is contained in:
wi11-holdsworth 2025-09-18 11:05:52 +10:00
commit 2c7c63b22e
4 changed files with 52 additions and 0 deletions

23
flake.nix Normal file
View file

@ -0,0 +1,23 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs =
{ nixpkgs, ... }:
let
system = "x86_64-linux";
in
{
devShells."${system}".default =
let
pkgs = import nixpkgs { inherit system; };
in
pkgs.mkShell {
packages = with pkgs; [
rendercv
];
};
};
}