Evie Litherland-Smith
a4ab3c7288
Added most config, at least enough to get by for now Update waybar config to remove hyprland-specific things Misc updates to rofi, swaylock Set greetd to start sway on machines by default now
18 lines
318 B
Nix
18 lines
318 B
Nix
{...}: {
|
|
imports = [./desktop.nix];
|
|
powerManagement.enable = true;
|
|
services.auto-cpufreq = {
|
|
enable = true;
|
|
settings = {
|
|
battery = {
|
|
governor = "powersave";
|
|
turbo = "never";
|
|
};
|
|
charger = {
|
|
governor = "performance";
|
|
turbo = "auto";
|
|
};
|
|
};
|
|
};
|
|
}
|