70 lines
1.9 KiB
Nix
70 lines
1.9 KiB
Nix
|
# Edit this configuration file to define what should be installed on
|
|||
|
# your system. Help is available in the configuration.nix(5) man page
|
|||
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|||
|
|
|||
|
{
|
|||
|
# Bootloader.
|
|||
|
boot.loader.systemd-boot.enable = true;
|
|||
|
boot.loader.efi.canTouchEfiVariables = true;
|
|||
|
|
|||
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|||
|
|
|||
|
# Configure network proxy if necessary
|
|||
|
# networking.proxy.default = "http://user:password@proxy:port/";
|
|||
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
|||
|
|
|||
|
# Enable networking
|
|||
|
networking.networkmanager.enable = true;
|
|||
|
|
|||
|
# Set your time zone.
|
|||
|
time.timeZone = "Europe/Oslo";
|
|||
|
|
|||
|
# Select internationalisation properties.
|
|||
|
i18n.defaultLocale = "en_GB.UTF-8";
|
|||
|
|
|||
|
i18n.extraLocaleSettings = {
|
|||
|
LC_ADDRESS = "nb_NO.UTF-8";
|
|||
|
LC_IDENTIFICATION = "nb_NO.UTF-8";
|
|||
|
LC_MEASUREMENT = "nb_NO.UTF-8";
|
|||
|
LC_MONETARY = "nb_NO.UTF-8";
|
|||
|
LC_NAME = "nb_NO.UTF-8";
|
|||
|
LC_NUMERIC = "nb_NO.UTF-8";
|
|||
|
LC_PAPER = "nb_NO.UTF-8";
|
|||
|
LC_TELEPHONE = "nb_NO.UTF-8";
|
|||
|
LC_TIME = "nb_NO.UTF-8";
|
|||
|
};
|
|||
|
|
|||
|
# Configure keymap in X11
|
|||
|
services.xserver.xkb = {
|
|||
|
layout = "gb";
|
|||
|
variant = "";
|
|||
|
};
|
|||
|
|
|||
|
# Configure console keymap
|
|||
|
console.keyMap = "uk";
|
|||
|
|
|||
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|||
|
# Enable automatic login for the user.
|
|||
|
services.getty.autologinUser = "martin";
|
|||
|
|
|||
|
# Some programs need SUID wrappers, can be configured further or are
|
|||
|
# started in user sessions.
|
|||
|
# programs.mtr.enable = true;
|
|||
|
# programs.gnupg.agent = {
|
|||
|
# enable = true;
|
|||
|
# enableSSHSupport = true;
|
|||
|
# };
|
|||
|
|
|||
|
# List services that you want to enable:
|
|||
|
|
|||
|
# Enable the OpenSSH daemon.
|
|||
|
services.openssh.enable = true;
|
|||
|
|
|||
|
# Open ports in the firewall.
|
|||
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
|||
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
|||
|
# Or disable the firewall altogether.
|
|||
|
networking.firewall.enable = false;
|
|||
|
|
|||
|
}
|