Files
Nix-Vibe/home-manager/users/caitlin.nix
T

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
];
};
}