nix-infra/hosts/bengal/configuration.nix
2024-03-24 19:02:45 +01:00

18 lines
363 B
Nix

{ ... }: {
imports = [
./hardware-configuration.nix
];
cherrykitten.graphical.enable = true;
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?
}