Added steam to desktop install

This commit is contained in:
Nickiel12 2023-03-17 15:18:18 -07:00
parent 4a119dfc10
commit 056802cb74
2 changed files with 8 additions and 0 deletions

View file

@ -60,6 +60,7 @@
./hosts/desktop
./hosts/configuration.nix
./modules/kmonad.nix
./modules/steam.nix
home-manager.nixosModules.home-manager {
home-manager = {
useGlobalPkgs = true;

7
modules/steam.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, home-manager, ... }:
{
programs.steam = {
enable = true;
};
}