diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2024-08-22 14:48:24 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2024-08-22 14:48:24 +0200 |
commit | 567c22812fe1fbe525f1732661d253b3902710a9 (patch) | |
tree | b78ce8007f265ed9d542f7992beca14a12327dec /accounts/gkleen@sif/libvirt | |
parent | d88404d51a6acd082e9917467862105ff1266367 (diff) | |
download | nixos-567c22812fe1fbe525f1732661d253b3902710a9.tar nixos-567c22812fe1fbe525f1732661d253b3902710a9.tar.gz nixos-567c22812fe1fbe525f1732661d253b3902710a9.tar.bz2 nixos-567c22812fe1fbe525f1732661d253b3902710a9.tar.xz nixos-567c22812fe1fbe525f1732661d253b3902710a9.zip |
...
Diffstat (limited to 'accounts/gkleen@sif/libvirt')
-rw-r--r-- | accounts/gkleen@sif/libvirt/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/libvirt/default.nix b/accounts/gkleen@sif/libvirt/default.nix new file mode 100644 index 00000000..a93a2266 --- /dev/null +++ b/accounts/gkleen@sif/libvirt/default.nix | |||
@@ -0,0 +1,13 @@ | |||
1 | { flakeInputs, ... }: | ||
2 | |||
3 | with flakeInputs.nixVirt.lib; | ||
4 | |||
5 | { | ||
6 | config = { | ||
7 | virtualisation.libvirt = { | ||
8 | enable = true; | ||
9 | connections."qemu:///session" = { | ||
10 | }; | ||
11 | }; | ||
12 | }; | ||
13 | } | ||