From 6e75d84e0a2a5939abcd5a9979d8c8899f99eef3 Mon Sep 17 00:00:00 2001 From: jay Date: Fri, 18 Jul 2025 01:08:40 -0400 Subject: [PATCH] Add powertop. Compile fix. --- nodes/hosts/nixwork/configuration.nix | 2 +- nodes/hosts/nixwork/programs/powertop.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes/hosts/nixwork/configuration.nix b/nodes/hosts/nixwork/configuration.nix index 83d6dbb..4aed237 100644 --- a/nodes/hosts/nixwork/configuration.nix +++ b/nodes/hosts/nixwork/configuration.nix @@ -10,8 +10,8 @@ ./hardware-configuration.nix inputs.nixos-hardware.nixosModules.framework-16-7040-amd ./programs/fwupd.nix + ./programs/powertop.nix ./programs/sof-firmware.nix - # Not working yet. ./services/fprintd.nix ./services/touchpad.nix ./system/bootloader.nix diff --git a/nodes/hosts/nixwork/programs/powertop.nix b/nodes/hosts/nixwork/programs/powertop.nix index 490a7cb..eb11ddb 100644 --- a/nodes/hosts/nixwork/programs/powertop.nix +++ b/nodes/hosts/nixwork/programs/powertop.nix @@ -1,4 +1,4 @@ -{ ... }: { +{ pkgs, ... }: { environment.systemPackages = [ pkgs.powertop ];