mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
39 lines
793 B
Nix
39 lines
793 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/gabriel
|
|
|
|
../common/optional/peripherals.nix
|
|
../common/optional/regreet.nix
|
|
../common/optional/pipewire.nix
|
|
../common/optional/quietboot.nix
|
|
../common/optional/wireless.nix
|
|
|
|
../common/optional/starcitizen-fixes.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "atlas";
|
|
useDHCP = true;
|
|
};
|
|
|
|
boot.kernelPackages = pkgs.linuxKernel.packages.linux_xanmod_latest;
|
|
|
|
powerManagement.powertop.enable = true;
|
|
programs.dconf.enable = true;
|
|
|
|
hardware.graphics.enable = true;
|
|
|
|
system.stateVersion = "22.05";
|
|
}
|