nixos-config/modules/core/hardware.nix

12 lines
173 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
services.smartd = {
enable = true;
autodetect = true;
};
hardware.logitech.wireless = {
enable = true;
enableGraphical = true;
};
2023-11-05 11:40:44 +01:00
}