nix-infra/hosts/bengal/default.nix

19 lines
356 B
Nix
Raw Normal View History

2024-03-24 18:02:45 +00:00
{ ... }: {
imports = [
./hardware-configuration.nix
];
2023-12-17 13:33:15 +00:00
2024-03-24 18:03:08 +00:00
cherrykitten.graphical = true;
2024-03-24 18:02:23 +00:00
2023-12-17 13:33:15 +00:00
boot.loader.systemd-boot.enable = true;
networking.hostName = "bengal";
networking.networkmanager.enable = true;
2023-12-17 13:33:15 +00:00
services.printing.enable = true;
hardware.pulseaudio.enable = true;
system.stateVersion = "23.11"; # Did you read the comment?
}