diff options
| author | Fuwn <[email protected]> | 2024-08-29 20:54:34 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-29 20:54:34 -0700 |
| commit | 6ddc25d4e189c30431703f602653b8bae861e4af (patch) | |
| tree | 979cc4d790c3ce8895471d008d61c3e9645acec4 /modules/virtualisation.nix | |
| parent | firewall (diff) | |
| download | nixos-config-6ddc25d4e189c30431703f602653b8bae861e4af.tar.xz nixos-config-6ddc25d4e189c30431703f602653b8bae861e4af.zip | |
some stuff
Diffstat (limited to 'modules/virtualisation.nix')
| -rw-r--r-- | modules/virtualisation.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/virtualisation.nix b/modules/virtualisation.nix new file mode 100644 index 0000000..6add74f --- /dev/null +++ b/modules/virtualisation.nix @@ -0,0 +1,11 @@ +{ + virtualisation = { + docker = { + enable = true; + storageDriver = "btrfs"; + enableOnBoot = false; + }; + + libvirtd.enable = true; + }; +} |