summaryrefslogtreecommitdiff
path: root/home/ebisu/kansai/system/virtualisation
diff options
context:
space:
mode:
Diffstat (limited to 'home/ebisu/kansai/system/virtualisation')
-rw-r--r--home/ebisu/kansai/system/virtualisation/default.nix12
-rw-r--r--home/ebisu/kansai/system/virtualisation/docker.nix10
2 files changed, 22 insertions, 0 deletions
diff --git a/home/ebisu/kansai/system/virtualisation/default.nix b/home/ebisu/kansai/system/virtualisation/default.nix
new file mode 100644
index 0000000..3a8591d
--- /dev/null
+++ b/home/ebisu/kansai/system/virtualisation/default.nix
@@ -0,0 +1,12 @@
+{ pkgs, ... }:
+{
+ imports = [ ./docker.nix ];
+
+ home.packages = with pkgs; [
+ bottles
+ wine
+ wine-staging
+ tsutsumi.lilipod
+ distrobox
+ ];
+}
diff --git a/home/ebisu/kansai/system/virtualisation/docker.nix b/home/ebisu/kansai/system/virtualisation/docker.nix
new file mode 100644
index 0000000..737ef3d
--- /dev/null
+++ b/home/ebisu/kansai/system/virtualisation/docker.nix
@@ -0,0 +1,10 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ act
+ earthly
+ dive
+ docker-slim
+ docker-credential-helpers
+ ];
+}