From 6d0f1256a3caf171260c930a770b5fd88cbe5d69 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Thu, 29 Aug 2024 13:39:37 -0500 Subject: [PATCH 1/2] cyclone: Install Steam --- flake.lock | 6 +++--- hosts/cyclone/configuration.nix | 11 +++++++++-- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index aa90761..3162c7d 100644 --- a/flake.lock +++ b/flake.lock @@ -87,11 +87,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1724479785, - "narHash": "sha256-pP3Azj5d6M5nmG68Fu4JqZmdGt4S4vqI5f8te+E/FTw=", + "lastModified": 1724819573, + "narHash": "sha256-GnR7/ibgIH1vhoy8cYdmXE6iyZqKqFxQSVkFgosBh6w=", "owner": "nixos", "repo": "nixpkgs", - "rev": "d0e1602ddde669d5beb01aec49d71a51937ed7be", + "rev": "71e91c409d1e654808b2621f28a327acfdad8dc2", "type": "github" }, "original": { diff --git a/hosts/cyclone/configuration.nix b/hosts/cyclone/configuration.nix index 923973a..a516f1e 100644 --- a/hosts/cyclone/configuration.nix +++ b/hosts/cyclone/configuration.nix @@ -99,6 +99,10 @@ "vscode" # Discord "discord" + # Steam + "steam" + "steam-original" + "steam-run" ]; }; @@ -116,8 +120,11 @@ wget ]; - programs.gnupg.agent.enable = true; - programs.zsh.enable = true; + programs = { + gnupg.agent.enable = true; + steam.enable = true; + zsh.enable = true; + }; # Please do not change this without reviewing release notes upstream. system.stateVersion = "24.11"; From 4037dfa7f46918d1dad1adcee87574b2e4553a23 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Thu, 29 Aug 2024 13:44:39 -0500 Subject: [PATCH 2/2] cyclone: Add several desktop apps --- hosts/cyclone/configuration.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/cyclone/configuration.nix b/hosts/cyclone/configuration.nix index a516f1e..214a290 100644 --- a/hosts/cyclone/configuration.nix +++ b/hosts/cyclone/configuration.nix @@ -109,14 +109,17 @@ # Standard system utilities. # The bulk of user-specific packages should go within the home-manager configuration. environment.systemPackages = with pkgs; [ + cider discord + firefox htop git gnome-tweaks - firefox + gnomeExtensions.appindicator + seafile-client + telegram-desktop tmux vim - vscode wget ];