This commit is contained in:
Sakooooo 2024-02-07 07:38:06 +04:00
parent 87a0fe5273
commit 81fdef1713
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 22 additions and 0 deletions

View file

@ -4,5 +4,6 @@
./lutris ./lutris
./wine ./wine
./grapejuice ./grapejuice
./tetrio
]; ];
} }

View file

@ -0,0 +1,21 @@
{
outputs,
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.desktop.game.tetrio;
in {
options.modules.desktop.game.tetrio = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
tetrio-desktop
];
};
}