config/hosts/eple/default.nix

46 lines
1.2 KiB
Nix

{ 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
../../profiles/mounts/panorama-zfs.nix
../../profiles/shell/base.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
#../../profiles/shell/binfmt-emu.nix # qemu won't compile...
../../profiles/domeneshop-dyndns
#../../profiles/code-remote
#../../profiles/remote-builders
#../../profiles/autossh-reverse-tunnels
];
services.domeneshop-updater.targets = [ config.networking.fqdn ];
networking.hostId = "43c43ded"; # needed for zfs: head -c 8 /etc/machine-id
# Networking
networking.networkmanager.enable = true;
networking.nameservers = [
"2001:700:1:11::2:51" # dns64.uninett.no
#"129.241.0.200"
#"129.241.0.201"
#"2001:700:300::200"
#"2001:700:300::201"
];
networking.networkmanager.insertNameservers = config.networking.nameservers; # wtf
# TODO: remove? Move?
programs.dconf.enable = true;
}