nixos-config/hosts/detritus/default.nix
2025-05-13 04:04:30 -04:00

20 lines
284 B
Nix

{ ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./user
../../modules/system
];
networking.hostName = "detritus";
system = {
desktop.enable = true;
stateVersion = "24.11";
};
services.xserver.videoDrivers = [ "amdgpu" ];
}