install steam using brew on macos

This commit is contained in:
2026-09-06 01:40:40 +02:00
parent 129b9ae365
commit 9bccabf712
2 changed files with 19 additions and 3 deletions
+4 -2
View File
@@ -3,8 +3,10 @@ self: { pkgs, ... }: {
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages =
[ pkgs.vim
environment.systemPackages = with pkgs; [
vim
curl
git
];
# Necessary for using flakes on this system.