10 lines
211 B
Nix
10 lines
211 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../. ../tp-smapi.nix ];
|
|
|
|
# hard disk protection if the laptop falls
|
|
services.hdapsd.enable = lib.mkDefault true;
|
|
services.xserver.videoDrivers = [ "intel" ];
|
|
}
|