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
908 B
Nix
43 lines
908 B
Nix
{ config
|
|
, pkgs
|
|
, lib
|
|
, inputs
|
|
, ...
|
|
}:
|
|
|
|
{
|
|
# Home Manager configuration for caitlin
|
|
home-manager.users.caitlin = {
|
|
home.username = "caitlin";
|
|
home.homeDirectory = "/home/caitlin";
|
|
home.stateVersion = "23.11"; # Set to your NixOS release version
|
|
|
|
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 = "Caitlin";
|
|
email = "[email protected]"; # Placeholder email
|
|
};
|
|
};
|
|
programs.direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
systemd.user.startServices = "sd-switch";
|
|
|
|
home.packages = with pkgs; [
|
|
fastfetch
|
|
];
|
|
};
|
|
}
|