config/hosts/eple/configuration.nix

39 lines
863 B
Nix
Raw Normal View History

2023-10-25 19:57:12 +02:00
{ config, pkgs, lib, ... }:
{
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
2024-10-11 15:28:14 +02:00
boot.binfmt.emulatedSystems = [
"aarch64-linux"
2024-10-17 22:50:41 +02:00
"riscv64-linux"
2024-10-11 15:28:14 +02:00
];
2024-06-24 12:24:53 +02:00
services.nfs.server.enable = false; # TODO: remove?
2023-10-25 19:57:12 +02:00
imports = [
./hardware-configuration.nix
../../profiles/sshd.nix
../../users/pbsds
2024-04-19 17:53:58 +02:00
../../users/bartvbl
2023-10-25 19:57:12 +02:00
2024-01-10 21:39:55 +01:00
../../profiles/mounts/panorama-zfs.nix
2024-03-26 18:27:48 +01:00
../../profiles/shell.nix
2023-10-25 19:57:12 +02:00
2024-10-03 17:25:47 +02:00
../../profiles/domeneshop-dyndns.nix
../../profiles/known-hosts.nix
2023-10-25 19:57:12 +02:00
];
services.domeneshop-updater.targets = [ config.networking.fqdn ];
2024-01-10 21:39:55 +01:00
networking.hostId = "43c43ded"; # needed for zfs: head -c 8 /etc/machine-id
2023-10-25 19:57:12 +02:00
# Networking
networking.networkmanager.enable = true;
# TODO: remove? Move?
programs.dconf.enable = true;
}