57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./wrapped-disk-config.nix
|
|
./distributed_build.nix
|
|
./power_management.nix
|
|
];
|
|
|
|
config = {
|
|
# Generate with `head -c4 /dev/urandom | od -A none -t x4`
|
|
networking.hostId = "46b62d92";
|
|
|
|
networking.hostName = "recovery"; # Define your hostname.
|
|
|
|
time.timeZone = "America/New_York";
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
me.boot.enable = true;
|
|
me.boot.secure = true;
|
|
me.mountPersistence = true;
|
|
|
|
me.optimizations = {
|
|
# enable = true;
|
|
arch = "kabylake";
|
|
# build_arch = "x86-64-v3";
|
|
system_features = [
|
|
"gccarch-kabylake"
|
|
"gccarch-x86-64-v3"
|
|
"benchmark"
|
|
"big-parallel"
|
|
"kvm"
|
|
"nixos-test"
|
|
];
|
|
};
|
|
|
|
# Early KMS
|
|
# boot.initrd.kernelModules = [ "amdgpu" ];
|
|
|
|
# Mount tmpfs at /tmp
|
|
boot.tmp.useTmpfs = true;
|
|
|
|
# Enable TRIM
|
|
# services.fstrim.enable = lib.mkDefault true;
|
|
|
|
me.build_in_ram.enable = true;
|
|
me.dont_use_substituters.enable = true;
|
|
me.minimal_base.enable = true;
|
|
me.recovery.enable = true;
|
|
};
|
|
}
|