blob: 9486547ffb36e3a1b558625f1d0693a5116f0e01 (
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
|
# 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
];
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_0;
# 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";
networking = {
networkmanager.enable = true;
useDHCP = false;
interfaces = {
enp1s0f0.useDHCP = true;
};
};
system.stateVersion = "22.11";
}
|