mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
36 lines
695 B
Nix
36 lines
695 B
Nix
{ inputs, pkgs, config, lib, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./../../modules/core
|
|
./../../modules/home/nfs.nix
|
|
./../../modules/core/virtualization.nix
|
|
];
|
|
|
|
powerManagement = {
|
|
enable = true;
|
|
# powertop.enable = true;
|
|
cpuFreqGovernor = lib.mkDefault "performance";
|
|
};
|
|
|
|
liv = {
|
|
desktop.enable = true;
|
|
creative.enable = true;
|
|
};
|
|
|
|
networking = {
|
|
hostName = "yoshino";
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
boot = {
|
|
kernelParams = [ ];
|
|
kernelModules = ["acpi_call"];
|
|
extraModulePackages = with config.boot.kernelPackages;
|
|
[
|
|
acpi_call
|
|
cpupower
|
|
]
|
|
++ [pkgs.cpupower-gui];
|
|
};
|
|
}
|