Skip to content

Commit

Permalink
Enable Docker and Podman virtualization in the Nix configuration for …
Browse files Browse the repository at this point in the history
…the Hakase system, including options for rootless execution and automatic pruning.
  • Loading branch information
yousiki committed Dec 5, 2024
1 parent 6bdfb0d commit 894c804
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions systems/x86_64-linux/hakase/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@
{device = "/dev/disk/by-uuid/9dc3e2ac-b63d-4dda-8b4c-7be566aa349a";}
];

# Enable docker and podman
virtualisation = {
docker = {
enable = true;
rootless.enable = true;
autoPrune.enable = true;
};
podman = {
enable = true;
autoPrune.enable = true;
};
};

nichijou = {
system = {
filesys = {
Expand Down

0 comments on commit 894c804

Please sign in to comment.