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.
43 lines
834 B
Nix
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
|
|
];
|
|
};
|
|
}
|