nix: added steam
yeety mcspanky
This commit is contained in:
+3
-2
@@ -27,17 +27,18 @@
|
||||
|
||||
allowUnfree = true; # allows installation of commercial apps.
|
||||
touchpadSupport = false;
|
||||
gamingDesktop = true;
|
||||
|
||||
# Custom Applications
|
||||
linux-apps = pkgs:
|
||||
with pkgs; [
|
||||
delfin
|
||||
jellyfin-media-player
|
||||
];
|
||||
|
||||
hyprconf = {
|
||||
monitor = [
|
||||
# hyprctl monitors all
|
||||
# ""
|
||||
# monitor, resolution@refreshrate, position (e.g., 0x0 is middle, 0x1080 is top), scale
|
||||
",highres@highrr,auto,auto"
|
||||
];
|
||||
};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{
|
||||
{...}: {
|
||||
imports = [
|
||||
../../pkgs/btop/default.nix
|
||||
];
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
gamingDesktop,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports =
|
||||
[
|
||||
]
|
||||
++ lib.optionals (gamingDesktop == true) [
|
||||
../../pkgs/steam/default.nix
|
||||
];
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user