nix-config/profiles/laptop.nix

15 lines
276 B
Nix
Raw Normal View History

2021-05-09 12:04:04 +02:00
{ config, lib, ... }:
let
cfg = config.my.profiles.laptop;
in
{
options.my.profiles.laptop = with lib; {
enable = mkEnableOption "laptop profile";
};
config = lib.mkIf cfg.enable {
# Enable touchpad support
services.xserver.libinput.enable = true;
};
}