Files
Nix-Vibe/home-manager/users/mary.nix
T
petere eb08cd4282 Nix-Vibe public snapshot (squashed history)
Current state of main at 0240060 feat(hp-laptop): install TeleportFling from its flake. History intentionally
collapsed to a single commit; this repo mirrors only the latest state.
2026-09-19 13:53:39 +01:00

43 lines
834 B
Nix

{ config
, pkgs
, lib
, inputs
, ...
}:
{
# Home Manager configuration for mary
home-manager.users.mary = {
home.username = "mary";
home.homeDirectory = "/home/mary";
home.stateVersion = "24.11";
home.file.".config/containers/containers.conf".text = ''
[service_destinations]
[service_destinations.local]
uri = "unix:///run/user/1000/podman/podman.sock"
[engine]
active_service = "local"
'';
programs.home-manager.enable = true;
programs.git = {
enable = true;
settings.user = {
name = "Mary";
email = "[email protected]";
};
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
systemd.user.startServices = "sd-switch";
home.packages = with pkgs; [
fastfetch
];
};
}