nixos-config/hosts/yoshino/default.nix

37 lines
695 B
Nix
Raw Normal View History

2024-12-12 22:24:17 +01:00
{ inputs, pkgs, config, lib, ... }:
{
imports = [
./hardware-configuration.nix
./../../modules/core
2024-12-26 12:38:36 +01:00
./../../modules/home/nfs.nix
./../../modules/core/virtualization.nix
2024-12-12 22:24:17 +01:00
];
powerManagement = {
enable = true;
# powertop.enable = true;
cpuFreqGovernor = lib.mkDefault "performance";
};
2024-12-23 22:39:47 +01:00
liv = {
desktop.enable = true;
creative.enable = true;
};
2024-12-12 22:24:17 +01:00
networking = {
hostName = "yoshino";
networkmanager.enable = true;
};
boot = {
kernelParams = [ ];
kernelModules = ["acpi_call"];
extraModulePackages = with config.boot.kernelPackages;
[
acpi_call
cpupower
]
++ [pkgs.cpupower-gui];
};
}