Files
smayzy cf553889d6
nixos config pipeline / show-flake (push) Successful in 20s
nixos config pipeline / deploy (push) Successful in 51s
add supertuxkart
2026-08-23 23:32:02 +02:00

21 lines
337 B
Nix

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.supertuxkart.enable = mkOption {
type = types.bool;
default = false;
description = "supertuxkart";
};
config = mkIf config.smayzy.supertuxkart.enable {
environment.systemPackages = with pkgs; [ supertuxkart ];
};
}