Enable local arion deployments
This commit is contained in:
parent
798417376f
commit
1913db2b68
2 changed files with 7 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
|||
{ nixpkgs, ... }:
|
||||
{ nixpkgs, arion, ... }:
|
||||
|
||||
{
|
||||
nixosConfigurations.sail = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
arion.nixosModules.arion
|
||||
|
||||
../hosts/sail.nix
|
||||
];
|
||||
};
|
||||
|
|
|
@ -14,4 +14,8 @@
|
|||
dockerSocket.enable = true;
|
||||
defaultNetwork.dnsname.enable = true;
|
||||
};
|
||||
|
||||
virtualisation.arion = {
|
||||
backend = "podman-socket";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue