NixOS-Config/modules/system/services/pc/fwupd/default.nix

9 lines
111 B
Nix
Raw Normal View History

2024-10-18 19:39:16 -04:00
{ pkgs, ... }:
2024-10-18 19:31:13 -04:00
{
services.fwupd.enable = true;
2024-10-18 19:39:16 -04:00
environment.systemPackages = with pkgs; [
fwupd
];
2024-10-18 19:31:13 -04:00
}