From 9629dd0ba0d0fe9f03a01fb9eea01e34b0a63060 Mon Sep 17 00:00:00 2001 From: biscuit Date: Mon, 19 May 2025 19:14:18 -0500 Subject: [PATCH] up --- nixos/biscuit/configuration.nix | 5 +++++ system/development.nix | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/nixos/biscuit/configuration.nix b/nixos/biscuit/configuration.nix index 2088e1a..f2ac528 100644 --- a/nixos/biscuit/configuration.nix +++ b/nixos/biscuit/configuration.nix @@ -13,6 +13,11 @@ environment.systemPackages = with pkgs; [ vim wget + + gcc + python313 + cargo + rustc ]; nix.settings.experimental-features = ["nix-command" "flakes"]; diff --git a/system/development.nix b/system/development.nix index 7800e23..da0be91 100644 --- a/system/development.nix +++ b/system/development.nix @@ -1,8 +1,2 @@ {pkgs, ...}: { - environment.systemPackages = with pkgs; [ - gcc - python3 - rust - cargo - ]; }