fix(docker): switch to docker because of dns issues
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
63e0ca56cb
commit
092e7328a6
1 changed files with 4 additions and 8 deletions
|
@ -11,10 +11,7 @@ with builtins; let
|
||||||
in {
|
in {
|
||||||
imports = [arion.nixosModules.arion];
|
imports = [arion.nixosModules.arion];
|
||||||
|
|
||||||
users.extraUsers.${user}.extraGroups = ["podman"];
|
users.extraUsers.${user}.extraGroups = ["docker"];
|
||||||
home-manager.users.${user}.programs.bash.shellAliases = {
|
|
||||||
podman = "sudo podman";
|
|
||||||
};
|
|
||||||
|
|
||||||
services.borgbackup.configs.arion = {
|
services.borgbackup.configs.arion = {
|
||||||
paths = [configPath];
|
paths = [configPath];
|
||||||
|
@ -22,14 +19,13 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
podman = {
|
docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dockerSocket.enable = true;
|
storageDriver = "btrfs";
|
||||||
defaultNetwork.settings.dns_enabled = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
arion = {
|
arion = {
|
||||||
backend = "podman-socket";
|
backend = "docker";
|
||||||
|
|
||||||
projects = let
|
projects = let
|
||||||
composeFiles =
|
composeFiles =
|
||||||
|
|
Loading…
Reference in a new issue