nix fmt
This commit is contained in:
@ -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" ];
|
||||
};
|
||||
};
|
||||
|
@ -1,5 +1,4 @@
|
||||
{ ... }:
|
||||
{
|
||||
{ ... }: {
|
||||
nix = {
|
||||
buildMachines = [ ];
|
||||
distributedBuilds = false;
|
||||
|
@ -1,4 +1 @@
|
||||
{ ... }:
|
||||
{
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
}
|
||||
{ ... }: { security.sudo.wheelNeedsPassword = false; }
|
||||
|
@ -1,9 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
{ ... }: {
|
||||
services = {
|
||||
openssh = {
|
||||
enable = true;
|
||||
};
|
||||
openssh = { enable = true; };
|
||||
|
||||
hydra = {
|
||||
enable = true;
|
||||
|
@ -1,5 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
{ pkgs, ... }: {
|
||||
boot = {
|
||||
loader.systemd-boot.enable = true;
|
||||
loader.efi.canTouchEfiVariables = true;
|
||||
|
@ -1,8 +1 @@
|
||||
{ ... }:
|
||||
{
|
||||
virtualisation = {
|
||||
oci-containers = {
|
||||
backend = "podman";
|
||||
};
|
||||
};
|
||||
}
|
||||
{ ... }: { virtualisation = { oci-containers = { backend = "podman"; }; }; }
|
||||
|
Reference in New Issue
Block a user