Initial commit

This commit is contained in:
Dotfiles
2026-07-06 02:13:07 +00:00
commit 06cf1c1825
166 changed files with 5255 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
{ pkgs, ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
# For rootless containers
security.unprivilegedUsernsClone = true;
users.users.river = {
subUidRanges = [
{
startUid = 100000;
count = 65536;
}
];
subGidRanges = [
{
startGid = 100000;
count = 65536;
}
];
extraGroups = [
"podman"
];
};
environment.systemPackages = with pkgs; [
podman
podman-compose
podman-desktop
];
}