blob: a778d21bf9174d8b826b04021d79022440004d4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# 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’).
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "ilex";
time.timeZone = "Europe/Amsterdam";
services.openssh.enable = true;
services.openssh.permitRootLogin = "yes";
networking = {
networkmanager.enable = true;
useDHCP = false;
interfaces = {
enp1s0f0.useDHCP = true;
};
};
system.stateVersion = "22.11";
}
|