mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-18 08:59:41 +01:00
9 lines
195 B
Nix
9 lines
195 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
# hard disk protection if the laptop falls
|
|
services.hdapsd.enable = lib.mkDefault true;
|
|
services.xserver.videoDrivers = [ "intel" ];
|
|
}
|