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 {
|
||||
imports = [arion.nixosModules.arion];
|
||||
|
||||
users.extraUsers.${user}.extraGroups = ["podman"];
|
||||
home-manager.users.${user}.programs.bash.shellAliases = {
|
||||
podman = "sudo podman";
|
||||
};
|
||||
users.extraUsers.${user}.extraGroups = ["docker"];
|
||||
|
||||
services.borgbackup.configs.arion = {
|
||||
paths = [configPath];
|
||||
|
@ -22,14 +19,13 @@ in {
|
|||
};
|
||||
|
||||
virtualisation = {
|
||||
podman = {
|
||||
docker = {
|
||||
enable = true;
|
||||
dockerSocket.enable = true;
|
||||
defaultNetwork.settings.dns_enabled = true;
|
||||
storageDriver = "btrfs";
|
||||
};
|
||||
|
||||
arion = {
|
||||
backend = "podman-socket";
|
||||
backend = "docker";
|
||||
|
||||
projects = let
|
||||
composeFiles =
|
||||
|
|
Loading…
Reference in a new issue