Enable services
This commit is contained in:
@ -11,7 +11,18 @@
|
|||||||
<home-manager/nixos>
|
<home-manager/nixos>
|
||||||
|
|
||||||
# Include Services
|
# Include Services
|
||||||
|
./services/fileflows.nix
|
||||||
|
./services/homepage.nix
|
||||||
|
./services/hydra.nix
|
||||||
|
./services/jellyfin.nix
|
||||||
|
./services/jellyseerr.nix
|
||||||
./services/portainer.nix
|
./services/portainer.nix
|
||||||
|
./services/prowlarr.nix
|
||||||
|
./services/radarr.nix
|
||||||
|
./services/sabnzbd.nix
|
||||||
|
./services/sonarr.nix
|
||||||
|
./services/stash.nix
|
||||||
|
./services/wireguard_vps.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
@ -81,6 +92,8 @@
|
|||||||
lazygit
|
lazygit
|
||||||
keychain
|
keychain
|
||||||
alejandra
|
alejandra
|
||||||
|
nnn
|
||||||
|
busybox
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
@ -120,6 +133,7 @@
|
|||||||
setSocketVariable = true;
|
setSocketVariable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
oci-containers.backend = "docker";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
@ -167,11 +181,17 @@
|
|||||||
qemuGuest.enable = true;
|
qemuGuest.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Open ports in the firewall.
|
networking.firewall = {
|
||||||
networking.firewall.allowedTCPPorts = [];
|
# Open ports in the firewall.
|
||||||
networking.firewall.allowedUDPPorts = [];
|
allowedTCPPorts = [];
|
||||||
# Or disable the firewall altogether.
|
allowedUDPPorts = [];
|
||||||
networking.firewall.enable = true;
|
# Or disable the firewall altogether.
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
trustedInterfaces = [
|
||||||
|
"docker0"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
# This value determines the NixOS release from which the default
|
||||||
# settings for stateful data, like file locations and database versions
|
# settings for stateful data, like file locations and database versions
|
||||||
|
|||||||
Reference in New Issue
Block a user