aboutsummaryrefslogtreecommitdiff
path: root/environment.nix
diff options
context:
space:
mode:
Diffstat (limited to 'environment.nix')
-rw-r--r--environment.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/environment.nix b/environment.nix
new file mode 100644
index 0000000..c3ed616
--- /dev/null
+++ b/environment.nix
@@ -0,0 +1,12 @@
+{ config, pkgs, ... }:
+{
+ environment.systemPackages = with pkgs; [
+ gcc
+ cargo
+ python311
+ zoxide
+ starship
+ tmux
+ cmake
+ ];
+}