laptop
This commit is contained in:
@@ -3,7 +3,9 @@
|
||||
services.avizo = {
|
||||
enable = true;
|
||||
settings = {
|
||||
time = 2.0;
|
||||
default = {
|
||||
time = 1.0;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ in
|
||||
imports = [
|
||||
./rofi.nix
|
||||
./dunst.nix
|
||||
./aviso.nix
|
||||
./avizo.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
];
|
||||
}
|
||||
@@ -6,10 +6,6 @@ in
|
||||
{
|
||||
programs.hyprland.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
brightnessctl
|
||||
];
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
||||
Reference in New Issue
Block a user