1

Compare commits

...

2 Commits

2 changed files with 5 additions and 2 deletions

View File

@ -61,7 +61,7 @@ in {
input = { input = {
focus-follows-mouse = { focus-follows-mouse = {
enable = true; enable = true;
max-scroll-amount = "0%"; # Skip partial windows that would scroll the viewport on focus # max-scroll-amount = "0%"; # Skip partial windows that would scroll the viewport on focus
}; };
keyboard = { keyboard = {

View File

@ -2,6 +2,7 @@
config, config,
lib, lib,
mylib, mylib,
pkgs,
... ...
}: let }: let
inherit (config.modules) docker; inherit (config.modules) docker;
@ -22,6 +23,8 @@ in {
enable = !docker.podman; enable = !docker.podman;
autoPrune.enable = true; autoPrune.enable = true;
extraPackages = with pkgs; [docker-compose];
rootless = { rootless = {
enable = docker.docker.rootless; enable = docker.docker.rootless;
setSocketVariable = true; setSocketVariable = true;
@ -54,7 +57,7 @@ in {
dockerSocket.enable = true; dockerSocket.enable = true;
defaultNetwork.settings.dns_enabled = true; defaultNetwork.settings.dns_enabled = true;
# extraPackages = with pkgs; []; extraPackages = with pkgs; [podman-compose];
}; };
oci-containers.backend = oci-containers.backend =