mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 09:47:52 +00:00
9 lines
196 B
Nix
9 lines
196 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.aviallon.hardware.nvidia;
|
|
in {
|
|
config = mkIf (cfg.enable && !cfg.useProprietary) {
|
|
boot.initrd.kernelModules = [ "nouveau" ];
|
|
};
|
|
}
|