2024-12-19 15:39:23 +01:00
|
|
|
{ lib, inputs, pkgs, config, ... }:
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
./../../modules/core
|
|
|
|
|
];
|
2025-01-07 09:58:12 +01:00
|
|
|
|
|
|
|
|
# Enable fancy boot animations
|
|
|
|
|
boot.plymouth.enable = true;
|
2024-12-19 15:39:23 +01:00
|
|
|
|
|
|
|
|
powerManagement = {
|
|
|
|
|
enable = true;
|
|
|
|
|
# powertop.enable = true;
|
|
|
|
|
cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
liv.laptop.enable = true;
|
|
|
|
|
|
|
|
|
|
# Bootloader stuff
|
|
|
|
|
boot = {
|
2025-01-11 18:16:00 +01:00
|
|
|
kernelParams = [ "quiet" "loglevel=3" "systemd.show_status=false" "splash" ];
|
2025-01-07 09:58:12 +01:00
|
|
|
loader.grub = {
|
|
|
|
|
enable = lib.mkForce true;
|
|
|
|
|
device = lib.mkForce "/dev/sda";
|
|
|
|
|
enableCryptodisk = lib.mkForce true;
|
|
|
|
|
useOSProber = lib.mkForce true;
|
|
|
|
|
};
|
|
|
|
|
initrd.secrets = {
|
|
|
|
|
"/crypto_keyfile.bin" = null;
|
|
|
|
|
};
|
|
|
|
|
initrd.luks.devices."luks-729500c5-557b-45c8-ab3f-5c365db28284".keyFile = lib.mkForce "/crypto_keyfile.bin";
|
2024-12-19 15:39:23 +01:00
|
|
|
extraModulePackages = with config.boot.kernelPackages;
|
|
|
|
|
[
|
|
|
|
|
acpi_call
|
|
|
|
|
cpupower
|
|
|
|
|
]
|
|
|
|
|
++ [pkgs.cpupower-gui];
|
|
|
|
|
};
|
2025-01-07 09:58:12 +01:00
|
|
|
|
|
|
|
|
networking.hostName = "ichiyo";
|
2024-12-19 15:39:23 +01:00
|
|
|
}
|