config/hosts/eple/default.nix

35 lines
859 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";
imports = [
./hardware-configuration.nix
../../profiles/sshd.nix
../../users/pbsds
2024-01-10 21:39:55 +01:00
../../profiles/mounts/panorama-zfs.nix
2023-10-25 19:57:12 +02:00
../../profiles/shell/base.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
2024-02-11 05:00:48 +01:00
../../profiles/domeneshop-dyndns
2023-10-25 19:57:12 +02:00
#../../profiles/code-remote
#../../profiles/remote-builders
#../../profiles/autossh-reverse-tunnels
];
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;
}