nixos-config/hosts/hazel/default.nix

49 lines
708 B
Nix
Raw Normal View History

2025-07-30 16:24:31 +02:00
{
pkgs,
config,
lib,
inputs,
...
}:
{
imports = [
./hardware-configuration.nix
# ./disko.nix
2025-07-30 16:24:31 +02:00
./../../modules/core/default.server.nix
# ./../../modules/services/hazel.nix
];
networking.hostName = "hazel";
nixpkgs.config.permittedInsecurePackages = [
"jitsi-meet-1.0.8043"
"olm-3.2.16"
];
time.timeZone = lib.mkForce "Europe/Paris";
environment.systemPackages = with pkgs; [
kitty.terminfo
];
services = {
smartd = {
enable = true;
autodetect = true;
};
};
networking.firewall = {
allowedTCPPorts = [
9123
];
};
boot = {
loader.grub = {
enable = true;
2025-07-30 16:46:08 +02:00
# device = "/dev/sda";
2025-07-30 16:24:31 +02:00
};
};
}