nixos-config/computational/configuration.nix

24 lines
480 B
Nix
Raw Normal View History

2023-08-19 16:58:57 +02:00
{ 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;
# [NETWORKING]
networking.hostName = "computational";
2023-11-18 11:29:47 +01:00
networking.networkmanager.enable = true;
2023-08-19 16:58:57 +02:00
2023-11-18 11:29:47 +01:00
system.stateVersion = "23.05";
2023-08-19 16:58:57 +02:00
}