formatting

This commit is contained in:
John Lancaster
2026-03-11 00:56:03 -05:00
parent 95b35a509a
commit ed8b9cf439
2 changed files with 5 additions and 8 deletions

View File

@@ -4,12 +4,9 @@
virtualisation.docker = {
enable = true;
};
home-manager.sharedModules = [
inputs.self.modules.homeManager.docker
home-manager.sharedModules = with inputs.self.modules.homeManager; [
docker
];
# users.users.john = {
# extraGroups = [ "docker" ];
# };
};
flake.modules.homeManager.docker = { config, lib, pkgs, ... }:

View File

@@ -29,12 +29,12 @@ in
};
# This gets imported by the user factory:
homeManager."${username}" = {
homeManager."${username}" = with inputs.self.meta.users."${username}"; {
home.stateVersion = "25.11";
xdg.enable = true;
programs.git.settings.user.name = "John Lancaster";
programs.git.settings.user.email = "32917998+jsl12@users.noreply.github.com";
programs.git.settings.user.name = name;
programs.git.settings.user.email = email;
# imports = with inputs.self.modules.homeManager; [
# # base