mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 12:20:04 +00:00
32 lines
447 B
Nix
32 lines
447 B
Nix
{pkgs, ...}: {
|
|
puzzlevision = {
|
|
themes.catppuccin.enable = true;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
## GENERAL
|
|
youtube-music
|
|
discord
|
|
ghostty
|
|
teams-for-linux
|
|
enpass
|
|
|
|
## WEB
|
|
firefox
|
|
ungoogled-chromium
|
|
|
|
## EDITORS
|
|
nano
|
|
zed-editor
|
|
apostrophe
|
|
jetbrains.phpstorm
|
|
arduino-ide
|
|
obsidian
|
|
|
|
## RUNTIMES and CLIs for development
|
|
bun
|
|
git
|
|
];
|
|
|
|
home.stateVersion = "25.05";
|
|
}
|