formatting
This commit is contained in:
@@ -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, ... }:
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user