formatting
This commit is contained in:
@@ -4,12 +4,9 @@
|
|||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
home-manager.sharedModules = [
|
home-manager.sharedModules = with inputs.self.modules.homeManager; [
|
||||||
inputs.self.modules.homeManager.docker
|
docker
|
||||||
];
|
];
|
||||||
# users.users.john = {
|
|
||||||
# extraGroups = [ "docker" ];
|
|
||||||
# };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
flake.modules.homeManager.docker = { config, lib, pkgs, ... }:
|
flake.modules.homeManager.docker = { config, lib, pkgs, ... }:
|
||||||
|
|||||||
@@ -29,12 +29,12 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
# This gets imported by the user factory:
|
# This gets imported by the user factory:
|
||||||
homeManager."${username}" = {
|
homeManager."${username}" = with inputs.self.meta.users."${username}"; {
|
||||||
home.stateVersion = "25.11";
|
home.stateVersion = "25.11";
|
||||||
xdg.enable = true;
|
xdg.enable = true;
|
||||||
|
|
||||||
programs.git.settings.user.name = "John Lancaster";
|
programs.git.settings.user.name = name;
|
||||||
programs.git.settings.user.email = "32917998+jsl12@users.noreply.github.com";
|
programs.git.settings.user.email = email;
|
||||||
|
|
||||||
# imports = with inputs.self.modules.homeManager; [
|
# imports = with inputs.self.modules.homeManager; [
|
||||||
# # base
|
# # base
|
||||||
|
|||||||
Reference in New Issue
Block a user