Compare commits
2 Commits
10d7de15b8
...
d7224bb1de
Author | SHA1 | Date |
---|---|---|
Alexandre LUCAZEAU | d7224bb1de | |
Alexandre LUCAZEAU | 0606c9dd37 |
|
@ -13,6 +13,7 @@
|
||||||
./network.nix
|
./network.nix
|
||||||
modules/common.nix
|
modules/common.nix
|
||||||
modules/smtp.nix
|
modules/smtp.nix
|
||||||
|
modules/powermanagement.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -105,6 +106,11 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.variables.EDITOR = "nvim";
|
environment.variables.EDITOR = "nvim";
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
||||||
|
location = {
|
||||||
|
provider = "manual";
|
||||||
|
latitude = 47.77;
|
||||||
|
longitude = -1.164;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,20 @@
|
||||||
interval = "hourly";
|
interval = "hourly";
|
||||||
localuser = null;
|
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 = {
|
xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autorun = true;
|
autorun = true;
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
{ pkgs, config, lib, ... }: {
|
||||||
|
|
||||||
|
powerManagement = {
|
||||||
|
enable = true;
|
||||||
|
powertop.enable = true;
|
||||||
|
cpuFreqGovernor = "powersave";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue