Compare commits

..

No commits in common. "fcad9101790eaf65cbc20b043cf658d4b7d99e45" and "5895a66911100b5f997f78bb63729abcb44dda66" have entirely different histories.

4 changed files with 10 additions and 9 deletions

View file

@ -12,8 +12,8 @@
}))
borgbackup # backup
dconf # required by home-manager
distrobox # docker utils
docker-compose # docker compose
distrobox # podman wrapper
podman-compose # "docker" compose
duf # replacement for df
feh # image viewer
gnome.nautilus # file explorer

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash
# print current active workspace id
hyprctl monitors -j | jaq '.[] | select(.focused) | .activeWorkspace.id'

View file

@ -1,12 +1,11 @@
{...}: {
virtualisation.docker = {
virtualisation.podman = {
enable = true;
storageDriver = "btrfs";
enableOnBoot = false;
dockerCompat = true;
dockerSocket.enable = true;
defaultNetwork.settings.dns_enabled =
true; # required by networks in compose
autoPrune.enable = true;
};
# docker users
users.users.laurent.extraGroups = ["docker"];
}

View file

@ -7,7 +7,7 @@
users.laurent = {
isNormalUser = true;
initialPassword = "laurent";
extraGroups = ["wheel" "video"];
extraGroups = ["wheel" "video" "docker"];
shell = pkgs.zsh;
};
};