summaryrefslogtreecommitdiff
path: root/nixos/default.nix
diff options
context:
space:
mode:
authorFabian Montero <fabian@posixlycorrect.com>2025-01-27 19:57:02 -0600
committerFabian Montero <fabian@posixlycorrect.com>2025-01-28 13:49:01 -0600
commite0a1a512f54a27eff9877e2d5a2c5c216cc07c4e (patch)
tree11d2c25b841c68a6093ed8117005321dbf2db44f /nixos/default.nix
parent1f774d2c89b757ff03894d26923d15af0d787857 (diff)
add steam module
sadly this has to be a system package until we find a non shitty way of installing in through hm
Diffstat (limited to '')
-rw-r--r--nixos/default.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/nixos/default.nix b/nixos/default.nix
index 0967ef4..2440c30 100644
--- a/nixos/default.nix
+++ b/nixos/default.nix
@@ -1 +1,10 @@
-{}
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}: {
+ imports = [
+ ./trash
+ ];
+}