34 lines
804 B
Nix
34 lines
804 B
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
|
|
../../users/bartvbl
|
|
|
|
../../profiles/mounts/panorama-zfs.nix
|
|
|
|
../../profiles/shell.nix
|
|
|
|
../../profiles/domeneshop-dyndns
|
|
#../../profiles/code-remote
|
|
../../profiles/remote-builders.nix
|
|
#../../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;
|
|
|
|
# TODO: remove? Move?
|
|
programs.dconf.enable = true;
|
|
}
|