1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

docker: remove

This commit is contained in:
2026-01-02 21:50:00 +01:00
parent f0ec0e99c3
commit c05422c8e4
2 changed files with 0 additions and 21 deletions

View File

@@ -254,7 +254,6 @@ in
./clipboard.nix
./cloud.nix
./direnv.nix
./docker.nix
./dunst.nix
./fonts.nix
./fzf.nix

View File

@@ -1,20 +0,0 @@
{
lib,
pkgs,
...
}:
{
virtualisation.docker = {
enable = true;
# for ICE wifi, ref https://gist.github.com/sunsided/7840e89ff4e11b64a2d7503fafa0290c
extraOptions = lib.concatStringsSep " " [
"--bip=172.39.1.5/24"
"--fixed-cidr=172.39.1.0/25"
];
};
users.users.me.extraGroups = [ "docker" ];
environment.systemPackages = [
pkgs.docker
pkgs.docker-compose
];
}