nix-config/profiles/laptop.nix

18 lines
351 B
Nix

{ 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;
# Enable upower power management
my.modules.upower.enable = true;
};
}