Make Docker work

This tells you how much I use it 😅
This commit is contained in:
Geoffrey Frogeye 2024-04-29 12:25:47 +02:00
parent 173a231556
commit 5924bd59c6
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
2 changed files with 8 additions and 0 deletions

View file

@ -8,6 +8,7 @@
./ccc
./common.nix
./desktop.nix
./dev
./diff
./gaming
./geoffrey.nix

7
os/dev/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.frogeye.dev.docker {
virtualisation.docker.enable = true;
users.users.geoffrey.extraGroups = [ "docker" ];
};
}