1
0
Fork 0

wip: remove arion

This commit is contained in:
Daniel Kempkens 2023-03-19 01:10:50 +01:00
parent d5f4f0eec9
commit 84b6a38492
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
4 changed files with 5 additions and 16 deletions

View file

@ -46,7 +46,6 @@
inherit (inputs) nixpkgs;
inherit (inputs) home-manager;
inherit (inputs) ragenix;
inherit (inputs) arion;
inherit inputs;
};

View file

@ -1,4 +1,4 @@
{ nixpkgs, home-manager, ragenix, arion, inputs, ... }:
{ nixpkgs, home-manager, ragenix, inputs, ... }:
let
overlay-neovim = inputs.neovim-nightly-overlay.overlay;
@ -26,8 +26,6 @@ in
ragenix.nixosModules.default
arion.nixosModules.arion
{
nixpkgs = nixpkgsConfig;
nix.nixPath = [ "nixpkgs=${nixpkgs}" ];

View file

@ -41,7 +41,7 @@ in
../nixos/mosquitto.nix
(import ../nixos/arion.nix (args // { inherit secret; }))
../nixos/arion.nix
../../container/weewx
../../container/matrix
../../container/proxitok

View file

@ -1,10 +1,6 @@
{ pkgs, config, secret, ... }:
{ pkgs, config, ... }:
{
environment.systemPackages = [
pkgs.arion
];
virtualisation = {
docker.enable = false;
@ -26,14 +22,10 @@
oci-containers = {
backend = "podman";
};
arion = {
backend = "podman-socket";
};
};
networking.firewall.interfaces."podman+" = {
allowedUDPPorts = [ 53 ];
allowedTCPPorts = [ 53 ];
allowedUDPPorts = [ 53 443 ];
allowedTCPPorts = [ 53 443 ];
};
}