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 + ]; +}