Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaysfreaky/fancontrol-gui
NixOS port of fancontrol-gui
https://github.com/jaysfreaky/fancontrol-gui
fancontrol lm-sensors nixos
Last synced: 2 months ago
JSON representation
NixOS port of fancontrol-gui
- Host: GitHub
- URL: https://github.com/jaysfreaky/fancontrol-gui
- Owner: JaysFreaky
- License: gpl-2.0
- Created: 2024-09-04T17:32:13.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T21:18:25.000Z (4 months ago)
- Last Synced: 2024-10-12T22:04:29.517Z (2 months ago)
- Topics: fancontrol, lm-sensors, nixos
- Language: Nix
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fancontrol-gui
This is a GUI for [lm-sensor's](https://github.com/lm-sensors/lm-sensors) fancontrol, ported & packaged for NixOS.Follow the steps below to use in a flake-enabled environment:
## 01. Add flake input
Inside your flake.nix file, add the following to your inputs:```nix
inputs.fancontrol-gui.url = "github:JaysFreaky/fancontrol-gui";
```## 02. Add package variable
Inside whichever file declares your packages, add this to the top in the 'let' declarations:```nix
let
fancontrol-gui = inputs.fancontrol-gui.packages.${pkgs.system}.default;
in {
```## 03. Declare environment.systemPackages
To use this package, declare it like so:```nix
environment.systemPackages = with pkgs; [
fancontrol-gui
];
```---
# Credits
[Maldela](https://github.com/Maldela) created [fancontrol-gui](https://github.com/Maldela/fancontrol-gui), which can greatly assist in setting up fan curves via pwmconfig/fancontrol. I've used it before on a Fedora system to create a base curve, and wanted to package it for NixOS.