nixos/common/laptop.nix
Ivan Bushchik 4afe642684
Refactor every role to have .enable option
NOTE: any config other than stella will not be working for a while

Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-08-22 19:39:11 +03:00

23 lines
429 B
Nix

{ config, pkgs, lib, ... }:
let
cfg = config.my.laptop;
in {
options = {
my.laptop.enable = lib.mkEnableOption "Laptop-specific configuration";
};
config = lib.mkIf (cfg.enable) {
environment.systemPackages = with pkgs; [
powertop
lm_sensors
];
hardware.bluetooth.enable = true;
services.blueman.enable = true;
services.tlp.enable = true;
services.upower.enable = true;
};
}