added gaming

This commit is contained in:
Moritz Böhme 2021-09-14 23:04:29 +02:00
parent 249be1b40f
commit 9b623aa532
3 changed files with 40 additions and 0 deletions

View file

@ -5,6 +5,7 @@
./apps
./cli
./desktop
./gaming
./services
];

View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
home.packages = with pkgs; [
steam
];
};
}