nix: added steam
yeety mcspanky
This commit is contained in:
+3
-2
@@ -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,4 +1,4 @@
|
|||||||
{
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
../../pkgs/btop/default.nix
|
../../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