diff options
| author | Fuwn <[email protected]> | 2024-08-28 20:36:04 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-28 20:36:04 -0700 |
| commit | f3c31e4ad7fab36e151f3a2e207fafb1eda1a787 (patch) | |
| tree | e265a1a5270b4522049110b8bc5aa13fda142c2f /home/ebisu/meta/system/virtualisation | |
| parent | many (diff) | |
| download | nixos-config-f3c31e4ad7fab36e151f3a2e207fafb1eda1a787.tar.xz nixos-config-f3c31e4ad7fab36e151f3a2e207fafb1eda1a787.zip | |
hi
Diffstat (limited to 'home/ebisu/meta/system/virtualisation')
| -rw-r--r-- | home/ebisu/meta/system/virtualisation/default.nix | 11 | ||||
| -rw-r--r-- | home/ebisu/meta/system/virtualisation/docker/default.nix | 10 |
2 files changed, 21 insertions, 0 deletions
diff --git a/home/ebisu/meta/system/virtualisation/default.nix b/home/ebisu/meta/system/virtualisation/default.nix new file mode 100644 index 0000000..d99c7eb --- /dev/null +++ b/home/ebisu/meta/system/virtualisation/default.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + imports = [ + ./docker + ]; + + home.packages = with pkgs; [ + bottles + valgrind + virt-manager + ]; +} diff --git a/home/ebisu/meta/system/virtualisation/docker/default.nix b/home/ebisu/meta/system/virtualisation/docker/default.nix new file mode 100644 index 0000000..26854be --- /dev/null +++ b/home/ebisu/meta/system/virtualisation/docker/default.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + act + earthly + dive + # docker + docker-buildx + docker-slim + ]; +} |