nixos-config/hosts/dandelion/default.nix

28 lines
482 B
Nix
Raw Normal View History

2025-03-20 14:27:04 +01:00
{ pkgs, config, ... }:
{
imports = [
./hardware-configuration.nix
./../../modules/core/default.dandelion.nix
];
networking.hostName = "dandelion";
nixpkgs.config.permittedInsecurePackages = [
"jitsi-meet-1.0.8043"
"olm-3.2.16"
];
time.timeZone = "Europe/Amsterdam";
environment.systemPackages = with pkgs; [
pkgs.kitty.terminfo
];
boot = {
loader.systemd-boot = {
enable = true;
canTouchEfiVariables = true;
};
};
}