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.
{config,pkgs,...}:
{
imports=
[./hardware-configuration.nix# Include the results of the hardware scan.
./linode.nix
];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable=true;
boot.loader.grub.version=2;
networking.hostName="subterranean-animism";# Define your hostname.
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.
networking.useDHCP=false;
networking.interfaces.eth0.useDHCP=true;
environment.systemPackages=withpkgs;[
vim
];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It‘s perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion="21.11";# Did you read the comment?