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
+3 -2
View File
@@ -27,17 +27,18 @@
allowUnfree = true; # allows installation of commercial apps. allowUnfree = true; # allows installation of commercial apps.
touchpadSupport = false; touchpadSupport = false;
gamingDesktop = true;
# Custom Applications # Custom Applications
linux-apps = pkgs: linux-apps = pkgs:
with pkgs; [ with pkgs; [
delfin jellyfin-media-player
]; ];
hyprconf = { hyprconf = {
monitor = [ monitor = [
# hyprctl monitors all # hyprctl monitors all
# "" # monitor, resolution@refreshrate, position (e.g., 0x0 is middle, 0x1080 is top), scale
",highres@highrr,auto,auto" ",highres@highrr,auto,auto"
]; ];
}; };
+1 -1
View File
@@ -1,4 +1,4 @@
{ {...}: {
imports = [ imports = [
../../pkgs/btop/default.nix ../../pkgs/btop/default.nix
]; ];
+12
View File
@@ -0,0 +1,12 @@
{
gamingDesktop,
lib,
...
}: {
imports =
[
]
++ lib.optionals (gamingDesktop == true) [
../../pkgs/steam/default.nix
];
}
+5
View File
@@ -0,0 +1,5 @@
{
programs.steam = {
enable = true;
};
}