34 lines
605 B
Nix
34 lines
605 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
#inputs.hardware.nixosModules.common-cpu-amd
|
|
#inputs.hardware.nixosModules.common-gpu-amd
|
|
#inputs.hardware.nixosModules.common-pc-ssd
|
|
|
|
./hardware-configuration.nix
|
|
../common/global
|
|
../common/users/dwessels
|
|
|
|
];
|
|
|
|
networking = {
|
|
hostName = "orpheus";
|
|
useDHCP = true;
|
|
};
|
|
|
|
boot.kernelPackages = pkgs.linuxKernel.packages.linux_xanmod_latest;
|
|
|
|
powerManagement.powertop.enable = true;
|
|
programs = {
|
|
adb.enable = true;
|
|
dconf.enable = true;
|
|
};
|
|
|
|
hardware.graphics.enable = true;
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|