nix-infra/hosts/bengal/default.nix
2024-04-01 19:16:35 +02:00

17 lines
349 B
Nix

{ ... }: {
imports = [
./hardware-configuration.nix
../../profiles/desktop
];
boot.loader.systemd-boot.enable = true;
networking.hostName = "bengal";
networking.networkmanager.enable = true;
services.printing.enable = true;
hardware.pulseaudio.enable = true;
system.stateVersion = "23.11"; # Did you read the comment?
}