summaryrefslogtreecommitdiff
path: root/nixos/trash/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/trash/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 'nixos/trash/default.nix')
-rw-r--r--nixos/trash/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/trash/default.nix b/nixos/trash/default.nix
new file mode 100644
index 0000000..a8c8785
--- /dev/null
+++ b/nixos/trash/default.nix
@@ -0,0 +1,10 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}: {
+ imports = [
+ ./steam
+ ];
+}