mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
102 lines
2.7 KiB
Nix
102 lines
2.7 KiB
Nix
{ config, pkgs, lib, myLib, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.aviallon.general;
|
|
desktopCfg = config.aviallon.desktop;
|
|
in
|
|
{
|
|
imports = [
|
|
(mkRemovedOptionModule [ "aviallon" "general" "flakes" "enable" ] "Flakes are now enabled by default")
|
|
(mkRenamedOptionModule [ "aviallon" "general" "cpuVendor" ] [ "aviallon" "general" "cpu" "vendor" ])
|
|
(mkRenamedOptionModule [ "aviallon" "general" "cpuArch" ] [ "aviallon" "general" "cpu" "arch" ])
|
|
(mkRenamedOptionModule [ "aviallon" "general" "cpuTune" ] [ "aviallon" "general" "cpu" "tune" ])
|
|
];
|
|
|
|
options.aviallon.general = {
|
|
enable = mkOption {
|
|
default = true;
|
|
example = false;
|
|
description = "Enable aviallon's general tuning";
|
|
type = types.bool;
|
|
};
|
|
|
|
minimal = mkEnableOption "minimal installation";
|
|
|
|
cores = mkOption {
|
|
default = null;
|
|
example = 4;
|
|
description = "Number of physical threads of the machine";
|
|
type = with types; nullOr ints.positive;
|
|
};
|
|
|
|
cpu = {
|
|
vendor = mkOption {
|
|
default = null;
|
|
example = "amd";
|
|
description = "Vendor of you CPU. Either AMD or Intel";
|
|
type = types.str;
|
|
};
|
|
|
|
arch = mkOption {
|
|
default =
|
|
if cfg.cpu.x86.level >= 2 then
|
|
"x86-64-v${toString cfg.cpu.x86.level}"
|
|
else
|
|
"x86-64"
|
|
;
|
|
example = "x86-64-v2";
|
|
description = "Set CPU arch used in overlays, ...";
|
|
type = types.str;
|
|
};
|
|
tune = mkOption {
|
|
default = "generic";
|
|
example = "sandybridge";
|
|
description = "Set CPU tuning for compilers";
|
|
type = types.str;
|
|
};
|
|
|
|
x86 = {
|
|
level = mkOption {
|
|
default = 1;
|
|
example = 3;
|
|
description = "Set supported x86-64 level";
|
|
type = with types; addCheck int (n: n >= 1 && n <= 4);
|
|
};
|
|
};
|
|
};
|
|
unsafeOptimizations = mkEnableOption "unsafe system tuning";
|
|
debug = mkEnableOption "debug-specific configuration";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
# Set your time zone.
|
|
time.timeZone = "Europe/Paris";
|
|
|
|
# Select internationalisation properties.
|
|
i18n = {
|
|
defaultLocale = "fr_FR.UTF-8";
|
|
};
|
|
|
|
console = {
|
|
keyMap = "fr-pc";
|
|
font = "Lat2-Terminus16";
|
|
};
|
|
|
|
aviallon.boot.cmdline = mkIf cfg.unsafeOptimizations {
|
|
mitigations = "off";
|
|
};
|
|
|
|
powerManagement.cpuFreqGovernor = mkDefault "schedutil";
|
|
|
|
# zram is so usefull, we should always have it enabled.
|
|
zramSwap = {
|
|
enable = true;
|
|
priority = 10000;
|
|
memoryPercent = 100;
|
|
algorithm = "zstd";
|
|
};
|
|
|
|
environment.noXlibs = mkIf (cfg.minimal && (!desktopCfg.enable)) true;
|
|
};
|
|
|
|
}
|