nix-infra/hosts/bengal/configuration.nix

27 lines
651 B
Nix
Raw Normal View History

2023-12-17 13:33:15 +00:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
2024-03-24 18:02:29 +00:00
{ config
, lib
, pkgs
, ...
}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
2023-12-17 13:33:15 +00:00
2024-03-24 18:02:23 +00:00
cherrykitten.graphical.enable = true;
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?
}