nix-infra/hosts/bengal/default.nix

18 lines
349 B
Nix
Raw Normal View History

2024-03-24 18:02:45 +00:00
{ ... }: {
imports = [
./hardware-configuration.nix
2024-04-01 17:16:35 +00:00
../../profiles/desktop
];
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?
}