how do i use the git version on nixos? #406
sacsbrainz
started this conversation in
General
Replies: 1 comment
-
You can override the boot.extraModulePackages = [
(config.boot.kernelPackages.msi-ec.overrideAttrs {
src = pkgs.fetchFromGitHub {
owner = "BeardOverflow";
repo = "msi-ec";
rev = "205300b0aa351c2856a0f83cc3868249756d8c8d";
hash = "sha256-Z7uZHHyQIIFB8cPuMR026U+sJuvhug0Mz4vtGno63oc=";
};
})
];
boot.kernelModules = [ "msi-ec" ]; Update |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using NixOS, just wondering how I can use the latest commit, which is on git in my NixOS, without waiting for release on Nixpkgs
Beta Was this translation helpful? Give feedback.
All reactions