Added Orpheus
This commit is contained in:
31
hosts/orpheus/default.nix
Normal file
31
hosts/orpheus/default.nix
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
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;
|
||||
|
||||
powerManagment.powertop.enable = true;
|
||||
programs = {
|
||||
adb.enable = true;
|
||||
dconf.enable = true;
|
||||
};
|
||||
|
||||
system.stateVersion = "22.11";
|
||||
}
|
||||
Reference in New Issue
Block a user