This commit is contained in:
parent
05b0a450be
commit
f5a1181267
|
@ -28,6 +28,7 @@
|
|||
./mpv
|
||||
./nix
|
||||
./nix-index
|
||||
./nixgl
|
||||
./nixpkgs
|
||||
./nm-applet
|
||||
./packages
|
||||
|
|
17
modules/home/nixgl/default.nix
Normal file
17
modules/home/nixgl/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, inputs, lib, ... }:
|
||||
let
|
||||
cfg = config.my.home.nixgl;
|
||||
in
|
||||
{
|
||||
options.my.home.nixgl = with lib; {
|
||||
enable = mkEnableOption "nixGL configuration";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable (lib.mkMerge [
|
||||
{
|
||||
nixGL = {
|
||||
inherit (inputs.nixgl) packages;
|
||||
};
|
||||
}
|
||||
]);
|
||||
}
|
Loading…
Reference in a new issue