14 lines
173 B
Nix
14 lines
173 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./steam
|
|
];
|
|
|
|
options.programs.desktop.games = {
|
|
steam = {
|
|
enable = lib.mkEnableOption "Enable steam";
|
|
};
|
|
};
|
|
};
|
|
}
|