This commit is contained in:
Miguel Palhas
2024-10-06 17:23:38 +01:00
parent efec1132e2
commit f62952e078
5 changed files with 35 additions and 6 deletions
+3 -1
View File
@@ -3,7 +3,9 @@
services.avizo = {
enable = true;
settings = {
time = 2.0;
default = {
time = 1.0;
};
};
};
}
+1 -1
View File
@@ -6,7 +6,7 @@ in
imports = [
./rofi.nix
./dunst.nix
./aviso.nix
./avizo.nix
];
home.packages = with pkgs; [
+1
View File
@@ -12,6 +12,7 @@ in
imports = [
./hardware-configuration.nix
../common/global
../common/features/laptop.nix
../common/features/networking.nix
../common/features/nvidia.nix
../common/features/wayland.nix
+30
View File
@@ -0,0 +1,30 @@
{ pkgs, ... }:
{
powerManagement = {
enable = true;
powertop = true;
};
services = {
thermald.enable = true;
power-profiles-daemon.enable = false;
auto-cpufreq = {
enable = true;
settings = {
battery = {
governor = "powersave";
turbo = "never";
};
charger = {
governor = "performance";
turbo = "auto";
};
};
};
};
environment.systemPackages = with pkgs; [
brightnessctl
];
}
-4
View File
@@ -6,10 +6,6 @@ in
{
programs.hyprland.enable = true;
environment.systemPackages = with pkgs; [
brightnessctl
];
services.greetd = {
enable = true;
settings = {