nixos-config/computational/configuration.nix

25 lines
509 B
Nix

{ config, pkgs, ... }:
{
# [HARDWARE]
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
# [BOOT]
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.swraid.enable = true;
# [NETWORKING]
networking.hostName = "computational";
networking.networkmanager.enable = true;
system.stateVersion = "23.11";
}