This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# The is the system definition for vps749417.ovh.net.
{config,pkgs,...}:
{
imports=
[# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Boot loader
boot.loader={
grub={
enable=true;
device="/dev/sda";
};
};
# Network configuration
networking={
hostName="vps749417";
useDHCP=false;
interfaces.ens3.useDHCP=true;
};
# Time zone
time.timeZone="Europe/Paris";
# Packages installed in system profile
environment.systemPackages=withpkgs;[
githtoptmuxvimwget
];
# OpenSSH daemon
services.openssh={
enable=true;
passwordAuthentication=false;
};
# Initial user account
users.users.manu={
isNormalUser=true;
extraGroups=["wheel"];# Enable ‘sudo’ for the user.