From f98b72504d4283b7cb79ee0cacef7bf3b69e9ee4 Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Sun, 17 May 2026 12:44:17 +0200 Subject: [PATCH] hardwareUtils: migrated package to separate file --- hosts/laptop/configuration.nix | 4 ---- hostsModules/laptop/nixos/hardwareUtils.nix | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 2019bee..f3bafd1 100755 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -43,10 +43,6 @@ ../../modules/nixos/office.nix ]; - environment.systemPackages = with pkgs; [ - vial # Open-source GUI and QMK fork for configuring your keyboard in real time - ]; - # to resolve this https://wiki.nixos.org/wiki/Home_Manager#I_cannot_set_GNOME_or_Gtk_themes_via_Home_Manager programs.dconf.enable = true; diff --git a/hostsModules/laptop/nixos/hardwareUtils.nix b/hostsModules/laptop/nixos/hardwareUtils.nix index 2021b60..7b3a1ee 100644 --- a/hostsModules/laptop/nixos/hardwareUtils.nix +++ b/hostsModules/laptop/nixos/hardwareUtils.nix @@ -7,5 +7,6 @@ # used for the framework 16 laptop framework-tool framework-tool-tui + vial # Open-source GUI and QMK fork for configuring your keyboard in real time ]; }