nixos_config/hosts/tesla-nixos/configuration.nix

24 lines
532 B
Nix
Raw Normal View History

2025-08-12 21:00:01 +02:00
{ config, pkgs, ... }:
{
imports =
[ ./hardware-configuration.nix ];
networking.hostName = "tesla-nixos";
boot.initrd.enable = true;
boot.loader = {
systemd-boot = {
enable = true;
}; # end loader.systemd-boot
}; # end boot
2025-09-24 18:23:45 +02:00
virtualisation.oci-containers.containers = {
isponsorblocktv = {
image = "ghcr.io/dmunozv04/isponsorblocktv:latest";
autoStart = true;
volumes = [
2025-09-24 18:33:20 +02:00
"/home/alisceon/isponsorblocktv:/app/data"
2025-09-24 18:31:24 +02:00
];
2025-09-24 18:23:45 +02:00
}; # end isponsorblocktv
};
2025-08-12 21:00:01 +02:00
} # end file