This commit is contained in:
parent
05b0a450be
commit
f5a1181267
|
@ -28,6 +28,7 @@
|
||||||
./mpv
|
./mpv
|
||||||
./nix
|
./nix
|
||||||
./nix-index
|
./nix-index
|
||||||
|
./nixgl
|
||||||
./nixpkgs
|
./nixpkgs
|
||||||
./nm-applet
|
./nm-applet
|
||||||
./packages
|
./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