moved home manager modules

This commit is contained in:
John Lancaster
2026-03-10 22:39:30 -05:00
parent 6c01156ffe
commit 5ee73c1f44
20 changed files with 31 additions and 31 deletions

View File

@@ -5,14 +5,14 @@
enable = true;
};
home-manager.sharedModules = [
inputs.self.homeModules.docker
inputs.self.modules.homeManager.docker
];
# users.users.john = {
# extraGroups = [ "docker" ];
# };
};
flake.homeModules.docker = { config, lib, pkgs, ... }:
flake.modules.homeManager.docker = { config, lib, pkgs, ... }:
{
options.docker = {
enable = lib.mkEnableOption "Docker tools and utilities";