From b4a9a7ecc26790de5bafa81de26da65467bdc354 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sun, 16 Apr 2023 20:24:39 +0200 Subject: [PATCH] Add separate system packages file --- nixos-config/configuration.nix | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/nixos-config/configuration.nix b/nixos-config/configuration.nix index efefadd5..ec45ab00 100644 --- a/nixos-config/configuration.nix +++ b/nixos-config/configuration.nix @@ -11,6 +11,7 @@ in { imports = [ ./hardware-configuration.nix + ./system-packages.nix ./home-manager.nix ]; @@ -94,17 +95,6 @@ in shell = pkgs.fish; }; - # List packages installed in system profile. To search, run: - # $ nix search wget - environment.systemPackages = with pkgs; [ - vim - wget - hyprland - wayland - xdg-utils - pciutils - ]; - # Allow unfree packages nixpkgs.config.allowUnfree = true;