Add lutris

This commit is contained in:
2024-08-16 09:46:20 -07:00
parent 3da8659710
commit 9f79a40354
2 changed files with 8 additions and 0 deletions

View File

@@ -100,6 +100,7 @@ with import <nixpkgs> {};
imports = [
./modules/applications/emacs/default.nix
./modules/games/lutris/default.nix
./modules/window_managers/hyprland/default.nix
];

View File

@@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
home.packages = [
pkgs.lutris
];
}