Move boot options to host, enable sshd

This commit is contained in:
John Locke 2024-03-21 20:29:38 -07:00
parent a7e38ae843
commit 3cdaf34ae9
2 changed files with 7 additions and 5 deletions

View file

@ -11,13 +11,11 @@
./include/i18n.nix ./include/i18n.nix
]; ];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
services.openssh {
enable = true
};
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true; hardware.bluetooth.powerOnBoot = true;

View file

@ -18,6 +18,10 @@
networking.hostName = "valhalla"; # Define your hostname. networking.hostName = "valhalla"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# This value determines the NixOS release from which the default # This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions # settings for stateful data, like file locations and database versions