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) nixpkgs;
|
||||||
inherit (inputs) home-manager;
|
inherit (inputs) home-manager;
|
||||||
inherit (inputs) ragenix;
|
inherit (inputs) ragenix;
|
||||||
inherit (inputs) arion;
|
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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}" ];
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue