mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
13 lines
234 B
Nix
13 lines
234 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
|
|
];
|
|
};
|
|
}
|