diff options
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 | } | ||