starting poking at dev environments

This commit is contained in:
2025-09-03 10:40:07 -06:00
parent 523609ea95
commit 498f863066
3 changed files with 131 additions and 1 deletions

View File

@@ -71,7 +71,21 @@
vim
pavucontrol
nh
docker
docker-compose
podman
skopeo
buildkit
];
virtualisation.containers.policy = {
default = [{type = "insecureAcceptAnything";}];
transports = {
docker-daemon = {
"" = [{type = "insecureAcceptAnything";}];
};
};
};
nix.settings.experimental-features = ["nix-command" "flakes"];
nix.settings.download-buffer-size = 5242880000;
@@ -93,5 +107,6 @@
system.autoUpgrade.enable = true;
system.autoUpgrade.allowReboot = true;
system.autoUpgrade.flake = "../../flake.nix";
qt.platformTheme = "kde6";
}