1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-04-28 08:45:04 +02:00
git.oat.zone--dark-firepit-.../modules/hardware/graphics.nix
System administrator ec00c09f2e Dotfiles
2022-01-11 17:44:40 +00:00

22 lines
415 B
Nix

{ config, options, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.hardware.graphics;
in {
options.modules.hardware.graphics = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
user.extraGroups = [ "video" ];
};
}