Nix-Vibe public snapshot (squashed history)

This commit is contained in:
2026-09-19 13:56:12 +01:00
commit aee8fb1e9b
119 changed files with 18895 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
{ 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 = "mary@example.com";
};
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
systemd.user.startServices = "sd-switch";
home.packages = with pkgs; [
fastfetch
];
};
}