2022-11-08 02:43:53 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
|
|
|
./hardware-configuration.nix
|
2022-11-09 15:28:57 +00:00
|
|
|
./rosetta.nix
|
2022-11-08 02:43:53 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
2022-11-09 15:28:57 +00:00
|
|
|
networking.hostName = "luxray"; # Define your hostname.
|
2022-11-08 02:43:53 +00:00
|
|
|
services.openssh.enable = true;
|
|
|
|
networking.firewall.enable = false;
|
|
|
|
system.copySystemConfiguration = true;
|
|
|
|
system.stateVersion = "22.05";
|
|
|
|
}
|
|
|
|
|
|
|
|
|