Add Steam module

This commit is contained in:
Tibo De Peuter 2023-04-27 09:16:19 +02:00 committed by Tibo De Peuter
parent 1b33524ccb
commit 291e684bd3
2 changed files with 9 additions and 0 deletions

View file

@ -2,6 +2,7 @@
imports = [
./alacritty
./firefox
./steam
./thunderbird
# ./virtualbox
];

View file

@ -0,0 +1,8 @@
{ inputs, lib, config, pkgs, ... }:
{
programs.steam = {
enable = true;
};
}