nix check works!!

This commit is contained in:
2026-06-18 19:03:46 -05:00
parent 9c395bd12c
commit 6de2694495
9 changed files with 95 additions and 56 deletions
+8
View File
@@ -0,0 +1,8 @@
{ config, lib, ... }:
{
imports = [
./qemu.nix
./podman.nix
];
}
+20
View File
@@ -0,0 +1,20 @@
{
config,
lib,
pkgs,
...
}:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
users.users.river.extraGroups = [ "podman" ];
environment.systemPackages = with pkgs; [
podman
podman-compose
];
}
-1
View File
@@ -10,7 +10,6 @@
programs.virt-manager.enable = true;
virtualisation.libvirtd.qemu = {
ovmf.enable = true;
swtpm.enable = true;
};