Skip to content

Commit 4841e7e

Browse files
committed
feat: enable virtualisation for hp-laptop
Signed-off-by: Reputable2722 <153411261+Reputable2772@users.noreply.github.com>
1 parent ebbcfa1 commit 4841e7e

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

System/HP-Laptop/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
./networking.nix
99
./openssh.nix
1010
./users.nix
11+
./virtualisation.nix
1112
];
1213
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{ pkgs, ... }:
2+
{
3+
virtualisation = {
4+
podman = {
5+
enable = true;
6+
package = pkgs.podman;
7+
dockerCompat = true;
8+
# dockerSocket.enable = true;
9+
defaultNetwork.settings = {
10+
dns_enabled = true;
11+
ipv6 = true;
12+
};
13+
};
14+
containers.enable = true;
15+
oci-containers.backend = "podman";
16+
};
17+
}

0 commit comments

Comments
 (0)