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) nixpkgs;
inherit (inputs) home-manager; inherit (inputs) home-manager;
inherit (inputs) ragenix; inherit (inputs) ragenix;
inherit (inputs) arion;
inherit inputs; inherit inputs;
}; };

View file

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

View file

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

View file

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