nixos-config/hosts/dandelion/default.nix

46 lines
843 B
Nix
Raw Normal View History

2025-03-20 14:27:04 +01:00
{ pkgs, config, ... }:
{
imports = [
./hardware-configuration.nix
./variables.nix
2025-03-20 14:28:57 +01:00
./../../modules/core/default.server.nix
./../../modules/services/dandelion.nix
2025-03-20 14:27:04 +01:00
];
networking.hostName = "dandelion";
nixpkgs.config.permittedInsecurePackages = [
"jitsi-meet-1.0.8043"
"olm-3.2.16"
];
time.timeZone = "Europe/Amsterdam";
environment.systemPackages = with pkgs; [
kitty.terminfo
zfs
2025-03-20 14:27:04 +01:00
];
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
2025-03-20 14:27:04 +01:00
};
supportedFilesystems = [ "zfs" ];
2025-03-20 14:27:04 +01:00
};
networking.hostId = "8a6b2565";
services.zfs = {
autoScrub.enable = true;
trim.enable = true;
};
boot.zfs.extraPools = [ "terrabite" ];
# fileSystems."/terrabite/main" = {
# device = "terrabite/main";
# fsType = "zfs";
# };
2025-03-20 14:27:04 +01:00
}