puzzlevision/homes/x86_64-linux/jo/default.nix
Jo 3e6f386f7f First installation on real system
 Gnome refinements
 Zed config updates
🐛 User login issue workaround
2025-05-22 20:52:07 +02:00

41 lines
624 B
Nix

{
pkgs,
config,
...
}: {
puzzlevision = {
themes.catppuccin.enable = true;
apps.zed.enable = true;
};
sops.secrets.wakatime-cfg = {
format = "binary";
sopsFile = ./secrets/wakatime.cfg;
path = "${config.home.homeDirectory}/.wakatime.cfg";
};
home.packages = with pkgs; [
## GENERAL
youtube-music
discord
ghostty
teams-for-linux
enpass
## WEB
firefox
ungoogled-chromium
## EDITORS
apostrophe
jetbrains.phpstorm
arduino-ide
obsidian
## RUNTIMES and CLIs for development
bun
git
];
home.stateVersion = "25.05";
}