nixos-configs/machines/gamepc/pim.home.nix
Pim Kunis 9b89576d42 Update flake inputs
Remove sunshine, moonshine and ollama
2025-05-17 14:38:03 +02:00

26 lines
431 B
Nix

{
self,
pkgs,
config,
...
}: {
home = {
username = "pim";
homeDirectory = "/home/pim";
stateVersion = "24.05";
packages = with pkgs.unstable; [
devenv
vlc
handbrake
lutris
chromium
];
};
sops = {
defaultSopsFile = "${self}/secrets/gamepc/pim.yaml";
# TODO: should be set automatically?
age.keyFile = "${config.xdg.configHome}/sops/age/keys.txt";
};
}