From 629dd4730ccc1dd835c1eab55cea84ad604f7015 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Fri, 20 Sep 2024 18:17:21 +0200 Subject: [PATCH] fix(Zephyrus): Remove "nvtop" as is is unfree --- hosts/Zephyrus/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hosts/Zephyrus/default.nix b/hosts/Zephyrus/default.nix index d5df186..17fc868 100644 --- a/hosts/Zephyrus/default.nix +++ b/hosts/Zephyrus/default.nix @@ -46,14 +46,13 @@ pkgs.neofetch pkgs.bottom pkgs.htop - pkgs.nvtop ]; # Services services.seatd.enable = true; # NVIDIA - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings" "nvtop"]; + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["nvidia-x11" "nvidia-settings"]; hardware.graphics.enable = true;