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