mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
add fwupd
This commit is contained in:
parent
fc1bcfbd8d
commit
fd7a8f1a08
@ -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
|
||||
|
@ -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
13
modules/fwupd.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user