From a508290555ca5d675e1c454d3e3393ffc36dacbb Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 5 Apr 2024 22:32:43 +0200 Subject: [PATCH] [packages] added steam --- nix/systems/default.nix | 1 + nix/systems/steam.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 nix/systems/steam.nix diff --git a/nix/systems/default.nix b/nix/systems/default.nix index ede4f10..9c0aaa9 100644 --- a/nix/systems/default.nix +++ b/nix/systems/default.nix @@ -12,6 +12,7 @@ ./security.nix ./simon.nix ./sound.nix + ./steam.nix ./virtualisation.nix ]; diff --git a/nix/systems/steam.nix b/nix/systems/steam.nix new file mode 100644 index 0000000..9cff6ab --- /dev/null +++ b/nix/systems/steam.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: { + + # steam + programs.steam = { + enable = true; + }; +}