tangled
alpha
login
or
join now
ovyerus.com
/
dotfiles
1
fork
atom
Nix configurations for my personal machines (Linux & macOS)
1
fork
atom
overview
issues
pulls
pipelines
feat: add openrgb module
ovyerus.com
1 month ago
a87e507d
0276ed28
verified
This commit was signed with the committer's
known signature
.
ovyerus.com
SSH Key Fingerprint:
SHA256:mXbp9WNBIT0nRNe28t2hrxfSwnSX7UBeW2DVlIyf0uw=
+16
1 changed file
expand all
collapse all
unified
split
modules
openrgb.nix
+16
modules/openrgb.nix
···
1
1
+
{
2
2
+
delib,
3
3
+
pkgs,
4
4
+
...
5
5
+
}:
6
6
+
delib.module {
7
7
+
name = "openrgb";
8
8
+
9
9
+
options = delib.singleEnableOption true;
10
10
+
11
11
+
nixos.ifEnabled = {
12
12
+
environment.systemPackages = [pkgs.openrgb];
13
13
+
services.hardware.openrgb.enable = true;
14
14
+
services.hardware.openrgb.motherboard = "amd";
15
15
+
};
16
16
+
}