default cpuFreqGovernor is ondemand now
This commit is contained in:
parent
8588bf6033
commit
0105051718
13 changed files with 17 additions and 24 deletions
|
@ -27,8 +27,6 @@
|
||||||
fsType = "tmpfs";
|
fsType = "tmpfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
||||||
|
|
||||||
# NTFS support
|
# NTFS support
|
||||||
# ------------
|
# ------------
|
||||||
environment.systemPackages = [ pkgs.ntfs3g ];
|
environment.systemPackages = [ pkgs.ntfs3g ];
|
||||||
|
|
|
@ -52,8 +52,7 @@
|
||||||
fsType = "tmpfs";
|
fsType = "tmpfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.maxJobs = lib.mkDefault 4;
|
nix.maxJobs = lib.mkDefault 2;
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
||||||
|
|
||||||
# lvm volume group
|
# lvm volume group
|
||||||
# ----------------
|
# ----------------
|
||||||
|
|
|
@ -75,6 +75,5 @@
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
nix.maxJobs = lib.mkDefault 4;
|
nix.maxJobs = lib.mkDefault 4;
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,6 @@
|
||||||
#};
|
#};
|
||||||
|
|
||||||
nix.maxJobs = lib.mkDefault 4;
|
nix.maxJobs = lib.mkDefault 4;
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
||||||
|
|
||||||
# lvm volume group
|
# lvm volume group
|
||||||
# ----------------
|
# ----------------
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
networking.hostName = "sterni";
|
networking.hostName = "sterni";
|
||||||
|
|
||||||
system.custom.wifi.interfaces = [ "wlp3s0" ];
|
system.custom.wifi.interfaces = [ "wlp3s0" ];
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.maxJobs = lib.mkDefault 4;
|
nix.maxJobs = lib.mkDefault 4;
|
||||||
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
||||||
|
|
||||||
# lvm volume group
|
# lvm volume group
|
||||||
# ----------------
|
# ----------------
|
||||||
|
|
|
@ -72,6 +72,10 @@
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Machines should be fast by default
|
||||||
|
# ----------------------------------
|
||||||
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
||||||
|
|
||||||
# set vim to the default editor
|
# set vim to the default editor
|
||||||
# -----------------------------
|
# -----------------------------
|
||||||
programs.vim.defaultEditor = true;
|
programs.vim.defaultEditor = true;
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
# make sure laptops stay awake when closing the montior
|
# make sure laptops stay awake when closing the montior
|
||||||
services.logind.lidSwitch = "ignore";
|
services.logind.lidSwitch = "ignore";
|
||||||
powerManagement.enable = false;
|
powerManagement.enable = false;
|
||||||
powerManagement.cpuFreqGovernor = "ondemand";
|
|
||||||
powerManagement.scsiLinkPolicy = "min_power";
|
powerManagement.scsiLinkPolicy = "min_power";
|
||||||
|
|
||||||
# config vim
|
# config vim
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{config, ...}:
|
{ config, ... }: {
|
||||||
{
|
|
||||||
# + +
|
# + +
|
||||||
# | |
|
# | |
|
||||||
# | |
|
# | |
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{config, ... }:
|
{ config, ... }: {
|
||||||
{
|
|
||||||
services.netdata = {
|
services.netdata = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = {
|
config = {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let cfg = config.workadventure;
|
||||||
cfg = config.workadventure;
|
|
||||||
in {
|
in {
|
||||||
|
|
||||||
options.workadventure = {
|
options.workadventure = {
|
||||||
|
|
Loading…
Reference in a new issue