2024-07-06 13:06:34 +02:00
|
|
|
|
|
2024-07-07 00:07:59 +02:00
|
|
|
|
{ config, pkgs, values, lib, ... }:
|
2024-07-06 13:06:34 +02:00
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
../../base.nix
|
|
|
|
|
../../misc/metrics-exporters.nix
|
2024-07-06 13:08:05 +02:00
|
|
|
|
|
|
|
|
|
./services/heimdal.nix
|
2024-07-07 00:07:59 +02:00
|
|
|
|
#./services/openldap.nix
|
2024-07-06 13:08:05 +02:00
|
|
|
|
./services/cyrus-sasl.nix
|
2024-07-06 13:06:34 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# buskerud does not support efi?
|
|
|
|
|
# boot.loader.systemd-boot.enable = true;
|
|
|
|
|
# boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
|
|
2024-07-06 13:08:05 +02:00
|
|
|
|
# resolved messes up FQDN coming from nscd
|
|
|
|
|
services.resolved.enable = false;
|
|
|
|
|
|
2024-07-06 13:06:34 +02:00
|
|
|
|
networking.hostName = "dagali";
|
2024-07-07 00:07:59 +02:00
|
|
|
|
networking.domain = lib.mkForce "pvv.local";
|
|
|
|
|
networking.hosts = {
|
|
|
|
|
"129.241.210.185" = [ "dagali.pvv.local" ];
|
|
|
|
|
};
|
|
|
|
|
#networking.search = [ "pvv.ntnu.no" "pvv.org" ];
|
2024-07-06 13:06:34 +02:00
|
|
|
|
networking.nameservers = [ "129.241.0.200" "129.241.0.201" ];
|
|
|
|
|
networking.tempAddresses = "disabled";
|
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
|
|
|
|
|
|
systemd.network.networks."ens18" = values.defaultNetworkConfig // {
|
|
|
|
|
matchConfig.Name = "ens18";
|
|
|
|
|
address = with values.hosts.dagali; [ (ipv4 + "/25") (ipv6 + "/64") ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# List packages installed in system profile
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
# TODO: consider adding to base.nix
|
|
|
|
|
nix-output-monitor
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
|
|
|
}
|