Bump flake.lock and fix stateVersion

This commit is contained in:
Dave Gallant
2022-12-19 23:03:33 -05:00
parent 01268aefaf
commit 1a2c6da648
4 changed files with 38 additions and 22 deletions

View File

@@ -2,9 +2,13 @@
boot.kernelPackages = pkgs.linuxPackages;
boot.supportedFilesystems = ["ntfs"];
system.stateVersion = "unstable";
system.stateVersion = "23.05";
system.autoUpgrade.enable = true;
# See: https://github.com/NixOS/nixpkgs/issues/180175
systemd.services.NetworkManager-wait-online.enable = false;
nix.extraOptions = "experimental-features = nix-command flakes";
nix.package = pkgs.nixUnstable;
@@ -45,9 +49,17 @@
};
virtualisation.docker.enable = true;
virtualisation.podman.enable = true;
virtualisation.libvirtd.enable = true;
virtualisation = {
podman = {
enable = true;
# Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.dnsname.enable = true;
};
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;