From 8d24b1552071272c262144a60b086db19eaea382 Mon Sep 17 00:00:00 2001 From: Mx Kookie Date: Wed, 23 Dec 2020 14:39:18 +0100 Subject: [PATCH] libkookie: games: init configuration --- .../configuration/workstation/games/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 infra/libkookie/configuration/workstation/games/default.nix diff --git a/infra/libkookie/configuration/workstation/games/default.nix b/infra/libkookie/configuration/workstation/games/default.nix new file mode 100644 index 00000000000..42bef9eb1dc --- /dev/null +++ b/infra/libkookie/configuration/workstation/games/default.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +{ + home.packages = with pkgs; + [ + steam + # superTuxKart # TODO: currently broken + ]; +}