nixos/modules/hardware/intel/default.nix

16 lines
305 B
Nix
Raw Normal View History

2023-07-17 18:40:53 +04:00
{ outputs, options, config, lib, pkgs, ...}:
let
cfg = config.modules.hardware.intelgputools;
in
{
options.modules.hardware.intelgputools = {
2024-08-01 16:24:09 +04:00
enable = lib.mkEnableOption false;
2023-07-17 18:40:53 +04:00
};
2024-08-01 16:24:09 +04:00
config = lib.mkIf cfg.enable {
2023-07-17 18:40:53 +04:00
users.users.sako.packages = with pkgs; [
intel-gpu-tools
];
};
}