-
Notifications
You must be signed in to change notification settings - Fork 69
Install from NixOS channel #20
Comments
I installed it with with the following overlay
self: super: {
lorri =
let src =
(super.fetchFromGitHub {
owner = "target";
repo = "lorri";
rev = "e943fa403234f1a5e403b6fdc112e79abc1e29ba";
sha256 = "1ar7clza117qdzldld9qzg4q0wr3g20zxrnd1s51cg6gxwlpg7fa";
});
in super.callPackage src { inherit src; };
} |
For now we are on a rolling-release schedule via |
@sveitser Your solution looks good! But after I |
@matthew-piziak I thought overlays put into I think this should work in
|
Aw, I tried that too, with a fully qualified path as well. No dice. 😢 😕 |
Hmm. Did you add |
Yeah, I added |
What if you apply the overlay in I'm using this https://github.com/sveitser/nixconfig/blob/master/pc-common.nix#L20 |
That did it! Yes! Thank you for bearing with me. :) Now it's failing with a cargo error, but that's something I can take look into myself. I'm just happy my configuration is picking it up. |
Strange that I have to install
lorri
withnix-env
instead of just tossing it in my configuration file asenvironment.systemPackages = [ lorri ];
. Is there going to be an upstream package in the future?I tried making my own like this:
But it failed like this:
The text was updated successfully, but these errors were encountered: