nix-git/modules/fwupd.nix
2023-09-07 16:55:57 +02:00

14 lines
235 B
Nix

{ config, pkgs, ... }:
{
# Enable firmware update daemon
services.fwupd.enable = true;
users.users.yoda = {
packages = with pkgs; [
# Install firmware on devices supported by fwupd.
gnome-firmware
];
};
}