refactor(hardware): major refactor of hardware modules

This commit is contained in:
ooks-io 2024-04-08 17:30:42 +12:00
parent 8f229750b0
commit 4a177d2122
18 changed files with 95 additions and 191 deletions

View file

@ -7,21 +7,27 @@
../../profiles
];
activeProfiles = ["base" "laptop"];
activeProfiles = ["base"];
systemModules.user = {
ooks.enable = true;
shell.fish.enable = true;
};
systemModules.laptop.power = {
powersave = {
minFreq = 800;
maxFreq = 1800;
systemModules = {
user = {
ooks.enable = true;
shell.fish.enable = true;
};
performance = {
minFreq = 1800;
maxFreq = 3600;
hardware = {
cpu.type = "intel";
gpu.type = "intel";
features = [ "bluetooth" "backlight" "battery" ];
battery = {
powersave = {
minFreq = 800;
maxFreq = 1800;
};
performance = {
minFreq = 1800;
maxFreq = 3600;
};
};
};
};