add fwupd

This commit is contained in:
Daniel Langbein 2023-09-07 16:55:51 +02:00
parent fc1bcfbd8d
commit fd7a8f1a08
3 changed files with 15 additions and 0 deletions

View File

@ -14,6 +14,7 @@
./home-manager.nix
../../modules/base.nix
../../modules/programs.nix
../../modules/fwupd.nix
../../modules/print-and-scan.nix
../../modules/fde-ssh-unlock.nix
../../modules/nextcloud-integration.nix

View File

@ -14,6 +14,7 @@
./home-manager.nix
../../modules/base.nix
../../modules/programs.nix
../../modules/fwupd.nix
../../modules/print-and-scan.nix
../../modules/fde-ssh-unlock.nix
../../modules/nextcloud-integration.nix

13
modules/fwupd.nix Normal file
View File

@ -0,0 +1,13 @@
{ 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
];
};
}