This commit is contained in:
2023-06-26 16:30:36 -05:00
parent c8366db03f
commit 6081557b6b
9 changed files with 23 additions and 47 deletions

View File

@ -88,7 +88,8 @@
"/etc/localtime:/etc/localtime:ro"
"/home/torrent/data:/data"
];
environmentFiles = [ /home/sezycei/srv/containerdata/transmission/.env ];
environmentFiles =
[ /home/sezycei/srv/containerdata/transmission/.env ];
extraOptions = [ "--cap-add=NET_ADMIN" "--privileged" ];
};
};

View File

@ -1,5 +1,4 @@
{ ... }:
{
{ ... }: {
nix = {
buildMachines = [ ];
distributedBuilds = false;

View File

@ -1,4 +1 @@
{ ... }:
{
security.sudo.wheelNeedsPassword = false;
}
{ ... }: { security.sudo.wheelNeedsPassword = false; }

View File

@ -1,9 +1,6 @@
{ ... }:
{
{ ... }: {
services = {
openssh = {
enable = true;
};
openssh = { enable = true; };
hydra = {
enable = true;

View File

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{ pkgs, ... }: {
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;

View File

@ -1,8 +1 @@
{ ... }:
{
virtualisation = {
oci-containers = {
backend = "podman";
};
};
}
{ ... }: { virtualisation = { oci-containers = { backend = "podman"; }; }; }