Add arion package
This commit is contained in:
parent
491350bc58
commit
804d6bf4d0
|
@ -1,6 +1,11 @@
|
||||||
{ inputs, ... }: {
|
{ pkgs, inputs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
imports = [ inputs.arion.nixosModules.arion ];
|
imports = [ inputs.arion.nixosModules.arion ];
|
||||||
|
environment.systemPackages = [
|
||||||
|
pkgs.arion
|
||||||
|
];
|
||||||
|
|
||||||
# Arion works with Docker, but for NixOS-based containers, you need Podman
|
# Arion works with Docker, but for NixOS-based containers, you need Podman
|
||||||
# since NixOS 21.05.
|
# since NixOS 21.05.
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
|
@ -9,6 +14,7 @@
|
||||||
defaultNetwork.settings.dns_enabled = true;
|
defaultNetwork.settings.dns_enabled = true;
|
||||||
};
|
};
|
||||||
docker = {
|
docker = {
|
||||||
|
enable = true;
|
||||||
storageDriver = "btrfs";
|
storageDriver = "btrfs";
|
||||||
rootless = {
|
rootless = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in New Issue