From 9126e85b37c5b82127d747ea463a0f9b1febe773 Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Sun, 17 May 2026 10:22:43 +0200 Subject: [PATCH] hardwareUtils: separated into new file --- hosts/laptop/configuration.nix | 5 ----- hostsModules/laptop/nixos/hardwareUtils.nix | 11 +++++++++++ 2 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 hostsModules/laptop/nixos/hardwareUtils.nix diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 0030136..9f9cd95 100755 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -52,10 +52,8 @@ gnome-calculator snapshot gnome-characters - gnome-disk-utility #tree # shows dir in tree # we use eza now brightnessctl # control brightness - udiskie # removable disk automounter for udisks cowsay cmatrix libreoffice @@ -69,9 +67,6 @@ pkgs-unstable.vimPluginsUpdater # used for building plugins vial # Open-source GUI and QMK fork for configuring your keyboard in real time usbutils # used for lsusb - # used for the framework 16 laptop - framework-tool - framework-tool-tui fluffychat # matrix client fuzzel birdtray # thunderbird tray app diff --git a/hostsModules/laptop/nixos/hardwareUtils.nix b/hostsModules/laptop/nixos/hardwareUtils.nix new file mode 100644 index 0000000..2021b60 --- /dev/null +++ b/hostsModules/laptop/nixos/hardwareUtils.nix @@ -0,0 +1,11 @@ +{ + pkgs, + ... +}: +{ + environment.systemPackages = with pkgs; [ + # used for the framework 16 laptop + framework-tool + framework-tool-tui + ]; +}