feat: adds yoshino (desktop)

This commit is contained in:
Ahwx 2024-12-12 22:24:17 +01:00
parent 46de81538f
commit 5184109dba

31
hosts/yoshino/default.nix Normal file
View file

@ -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];
};
}