mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
16 lines
437 B
Nix
16 lines
437 B
Nix
{pkgs, ...}: {
|
|
services = {
|
|
fwupd = {
|
|
enable = true;
|
|
package =
|
|
(import (builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/bb2009ca185d97813e75736c2b8d1d8bb81bde05.tar.gz";
|
|
sha256 = "sha256:003qcrsq5g5lggfrpq31gcvj82lb065xvr7bpfa8ddsw8x4dnysk";
|
|
}) {
|
|
inherit (pkgs) system;
|
|
})
|
|
.fwupd;
|
|
};
|
|
fprintd.enable = false;
|
|
};
|
|
}
|