Update README

This commit is contained in:
2026-01-11 18:58:36 -04:00
parent 92a019ce78
commit 706db3c704
+3 -7
View File
@@ -19,19 +19,15 @@ If you want to use this repo directly as a flake input:
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
my-nur.url = "github:<YOUR_GITHUB_USER>/nur-packages";
chiasson.url = "git+https://git.chiasson.cloud/Olivier/nur-packages";
};
outputs = { self, nixpkgs, my-nur, ... }:
outputs = { self, nixpkgs, chiasson, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
overlays = [ my-nur.overlays.default ];
};
in
{
packages.${system}.default = pkgs.librepods;
packages.${system}.default = chiasson.packages.${system}.librepods;
};
}
```