mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
53 lines
996 B
Nix
53 lines
996 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;
|
|
amdgpu.enable = true;
|
|
wine.enable = false;
|
|
gui.enable = true;
|
|
};
|
|
|
|
networking = {
|
|
hostName = "yoshino";
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
boot = {
|
|
kernelParams = [ ];
|
|
kernelModules = [ "acpi_call" ];
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot.configurationLimit = 10;
|
|
};
|
|
extraModulePackages =
|
|
with config.boot.kernelPackages;
|
|
[
|
|
acpi_call
|
|
cpupower
|
|
v4l2loopback
|
|
]
|
|
++ [ pkgs.cpupower-gui ];
|
|
};
|
|
}
|