feat: add 'docker' home module to 'work' host

This commit is contained in:
2026-02-02 16:48:24 +01:00
parent d9c3cb9889
commit 0778b12305
2 changed files with 10 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ in
../../modules/cloud
../../modules/comms
../../modules/dconf.nix
../../modules/docker
../../modules/git
../../modules/k9s.nix
../../modules/keepassxc.nix

View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
config = {
home.packages = with pkgs; [
dive
];
};
}