Compare commits

..

No commits in common. "d7224bb1ded33c5aff6394bb09a18901bda77acd" and "10d7de15b8376ec726a7a28e9e97ee1f76f4a9f2" have entirely different histories.

3 changed files with 1 additions and 30 deletions

View File

@ -13,7 +13,6 @@
./network.nix
modules/common.nix
modules/smtp.nix
modules/powermanagement.nix
];
@ -106,11 +105,6 @@
];
environment.variables.EDITOR = "nvim";
location = {
provider = "manual";
latitude = 47.77;
longitude = -1.164;
};
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
}

View File

@ -17,20 +17,6 @@
interval = "hourly";
localuser = null;
};
redshift = {
enable = true;
brightness = {
# Note the string values below.
day = "1";
night = "1";
};
temperature = {
day = 5500;
night = 3700;
};
};
geoclue2.appConfig.redshift.isAllowed = true;
automatic-timezoned.enable = true;
xserver = {
enable = true;
autorun = true;

View File

@ -1,9 +0,0 @@
{ pkgs, config, lib, ... }: {
powerManagement = {
enable = true;
powertop.enable = true;
cpuFreqGovernor = "powersave";
};
}