wip: remove arion
This commit is contained in:
parent
d5f4f0eec9
commit
84b6a38492
4 changed files with 5 additions and 16 deletions
|
@ -46,7 +46,6 @@
|
|||
inherit (inputs) nixpkgs;
|
||||
inherit (inputs) home-manager;
|
||||
inherit (inputs) ragenix;
|
||||
inherit (inputs) arion;
|
||||
inherit inputs;
|
||||
};
|
||||
|
||||
|
|
|
@ -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}" ];
|
||||
|
|
|
@ -41,7 +41,7 @@ in
|
|||
|
||||
../nixos/mosquitto.nix
|
||||
|
||||
(import ../nixos/arion.nix (args // { inherit secret; }))
|
||||
../nixos/arion.nix
|
||||
../../container/weewx
|
||||
../../container/matrix
|
||||
../../container/proxitok
|
||||
|
|
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue