nix: added steam

yeety mcspanky
This commit is contained in:
biscuit
2025-06-11 06:34:45 -05:00
parent 0e0b8a40c7
commit b697c89aae
4 changed files with 21 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
{
{...}: {
imports = [
../../pkgs/btop/default.nix
];
+12
View File
@@ -0,0 +1,12 @@
{
gamingDesktop,
lib,
...
}: {
imports =
[
]
++ lib.optionals (gamingDesktop == true) [
../../pkgs/steam/default.nix
];
}