install docker and compose

This commit is contained in:
Sam 2024-09-21 22:19:00 +01:00
parent afaf3c4697
commit 53d2343f04
5 changed files with 37 additions and 49 deletions

View File

@ -1,26 +1,10 @@
{ pkgs, inputs, ... }:
{
imports = [ inputs.arion.nixosModules.arion ];
environment.systemPackages = [
pkgs.arion
];
# Arion works with Docker, but for NixOS-based containers, you need Podman
# since NixOS 21.05.
{pkgs, ...}: {
virtualisation = {
podman = {
enable = true;
defaultNetwork.settings.dns_enabled = true;
};
docker = {
enable = true;
storageDriver = "btrfs";
rootless = {
enable = true;
setSocketVariable = true;
};
};
};
environment.systemPackages = with pkgs; [
docker-compose
];
}

View File

@ -1,5 +1,10 @@
{ pkgs, lib, inputs, config, ... }:
let
{
pkgs,
lib,
inputs,
config,
...
}: let
admin_dbPasswordFile = lib.optionalString (lib.hasAttr "sops-nix" inputs) config.sops.secrets."software/postgres/admin_db/password".path;
initScript = pkgs.writeText "init.sh" ''
#!/bin/bash
@ -67,8 +72,7 @@ let
timezone = 'Etc/UTC'
default_text_search_config = 'pg_catalog.english'
'';
in
{
in {
sops.secrets = {
"software/postgres/admin_db/password" = {};
};
@ -121,7 +125,6 @@ in
};
ports = ["5432:5432"];
volumes = [
# Mount pgdata to external zfs volume
"/mnt/postgres:/var/lib/postgresql/data"
@ -140,4 +143,3 @@ in
};
};
}

View File

@ -23,6 +23,7 @@ in {
"networkmanager"
"scanner"
"lp"
"docker"
];
};

View File

@ -46,6 +46,7 @@ in {
../common/optional/nfs-mounts/media.nix
../common/optional/nfs-mounts/homeshare.nix
../common/optional/printing.nix
../common/optional/docker
];
boot = {