Update README
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user