diff options
| author | Christian <[email protected]> | 2026-07-13 17:50:55 -0500 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-07-13 17:50:55 -0500 |
| commit | b53d77773468ffb4f4ddc3dcd828ba88be9daeab (patch) | |
| tree | f00ed0156b0c5b8e2841e0c52c83007beda38047 | |
| parent | 0dc4095d4efbc22e5e436dc1a9841dad6afe8c08 (diff) | |
Enable Steam on desktop and laptop
| -rw-r--r-- | hosts/desktop/configuration.nix | 2 | ||||
| -rw-r--r-- | hosts/laptop/configuration.nix | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index f330b89..6e6f621 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -55,5 +55,7 @@ ]; }; + programs.steam.enable = true; + system.stateVersion = "25.11"; } diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 7ba2810..2044bc1 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -73,5 +73,7 @@ boot.resumeDevice = "/dev/disk/by-uuid/56ae0488-d952-41d8-8128-60a46e979d91"; boot.kernelParams = [ "resume_offset=12832768" ]; + programs.steam.enable = true; + system.stateVersion = "25.11"; } |
