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
+1
View File
@@ -88,6 +88,7 @@
alacritty.enable = true; alacritty.enable = true;
ardour.enable = true; ardour.enable = true;
mail.enable = true; mail.enable = true;
supertuxkart.enable = true;
flatpak = { flatpak = {
enable = true; enable = true;
media.enable = true; media.enable = true;
+1
View File
@@ -2,5 +2,6 @@
{ {
imports = [ imports = [
./steam.nix ./steam.nix
./supertuxkart.nix
]; ];
} }
+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 ];
};
}