asdfjkl;
This commit is contained in:
parent
87a0fe5273
commit
81fdef1713
2 changed files with 22 additions and 0 deletions
|
@ -4,5 +4,6 @@
|
||||||
./lutris
|
./lutris
|
||||||
./wine
|
./wine
|
||||||
./grapejuice
|
./grapejuice
|
||||||
|
./tetrio
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
21
modules/desktop/game/tetrio/tetrio.nix
Normal file
21
modules/desktop/game/tetrio/tetrio.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue