nixos-config/hosts/ichiyo/default.nix

57 lines
1.1 KiB
Nix
Raw Normal View History

{
lib,
inputs,
pkgs,
config,
...
}:
2024-12-19 15:39:23 +01:00
{
imports = [
./hardware-configuration.nix
./../../modules/core
2025-09-08 22:17:12 +02:00
./../../modules/services/tailscale.nix
2024-12-19 15:39:23 +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;
liv.gui.enable = true;
2024-12-19 15:39:23 +01:00
# Bootloader stuff
boot = {
kernelParams = [
"quiet"
"loglevel=3"
"systemd.show_status=false"
"splash"
];
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";
extraModulePackages =
with config.boot.kernelPackages;
2024-12-19 15:39:23 +01:00
[
acpi_call
cpupower
]
++ [ pkgs.cpupower-gui ];
2024-12-19 15:39:23 +01:00
};
networking.hostName = "ichiyo";
2024-12-19 15:39:23 +01:00
}