test steam module

This commit is contained in:
ooks-io 2024-01-15 15:00:53 +13:00
parent c7bbeb24ca
commit fe7ab0556d
5 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ lib, ... }:
{
imports = [
./steam
];
options.programs.desktop.games = {
steam = {
enable = lib.mkEnableOption "Enable steam";
};
};
};
}