diff --git a/hosts/yoshino/default.nix b/hosts/yoshino/default.nix new file mode 100644 index 0000000..64c381e --- /dev/null +++ b/hosts/yoshino/default.nix @@ -0,0 +1,31 @@ +{ inputs, pkgs, config, lib, ... }: +{ + imports = [ + ./hardware-configuration.nix + ./../../modules/core + ]; + + powerManagement = { + enable = true; + # powertop.enable = true; + cpuFreqGovernor = lib.mkDefault "performance"; + }; + + liv.laptop.enable = false; + + networking = { + hostName = "yoshino"; + networkmanager.enable = true; + }; + + boot = { + kernelParams = [ ]; + kernelModules = ["acpi_call"]; + extraModulePackages = with config.boot.kernelPackages; + [ + acpi_call + cpupower + ] + ++ [pkgs.cpupower-gui]; + }; +}