Files
nixos-template-base/public/laptop.nix

15 lines
277 B
Nix
Raw Normal View History

2016-08-08 22:58:30 +02:00
{ config, lib, pkgs, ... }:
2016-07-22 14:16:20 +02:00
let
2016-08-08 22:58:30 +02:00
inherit (lib) mkIf;
2016-07-22 14:16:20 +02:00
cfg = config.r6d.config-generator;
2016-08-08 22:58:30 +02:00
computers = config.r6d.computers;
profiles = config.r6d.profiles;
in
mkIf cfg.laptop {
# Gestion spécifique pour PC portable
2016-08-08 22:58:30 +02:00
powerManagement.cpuFreqGovernor = "powersave";
}