add supertuxkart
nixos config pipeline / show-flake (push) Successful in 20s
nixos config pipeline / deploy (push) Successful in 51s

This commit is contained in:
smayzy
2026-08-23 23:32:02 +02:00
parent 0aa11e118c
commit cf553889d6
3 changed files with 22 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
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 ];
};
}