From e981f03e036f1a9501b3967beac81c24fc664f45 Mon Sep 17 00:00:00 2001 From: biscuit Date: Thu, 15 May 2025 14:54:33 -0500 Subject: [PATCH] nix: cleaned up files --- nixos/configuration.nix | 5 ----- system/development/default.nix | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 system/development/default.nix diff --git a/nixos/configuration.nix b/nixos/configuration.nix index bc180b9..d984094 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -57,7 +57,6 @@ # List packages installed in system profile. environment.systemPackages = with pkgs; [ wl-clipboard - nodejs vim # Default editor wget git @@ -66,10 +65,6 @@ p7zip btop libnotify - - gcc - rustc - cargo ]; environment.sessionVariables = { diff --git a/system/development/default.nix b/system/development/default.nix new file mode 100644 index 0000000..7bafbfd --- /dev/null +++ b/system/development/default.nix @@ -0,0 +1,7 @@ +{pkgs, ...}: { + environment.systemPackages = with pkgs; [ + gcc + rustc + cargo + ]; +}