mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 20:30:05 +00:00
44 lines
658 B
Nix
44 lines
658 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./apps/discord
|
|
./apps/youtube-music
|
|
];
|
|
|
|
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
|
|
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";
|
|
}
|