mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-11-29 11:58:47 +00:00
75 lines
1.3 KiB
Nix
75 lines
1.3 KiB
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./apps/discord
|
|
./apps/firefox
|
|
./apps/vicinae
|
|
./apps/packettracer
|
|
|
|
./desktop/gnome
|
|
];
|
|
|
|
puzzlevision = {
|
|
themes.catppuccin.enable = true;
|
|
apps = {
|
|
zed.enable = true;
|
|
firefox = {
|
|
enable = true;
|
|
extensions = [
|
|
"uBlock0@raymondhill.net"
|
|
"ATBC@EasonWong"
|
|
"languagetool-webextension@languagetool.org"
|
|
"firefox-enpass@enpass.io"
|
|
"firefox@tampermonkey.net"
|
|
"wappalyzer@crunchlabz.com"
|
|
"{7a7a4a92-a2a0-41d1-9fd7-1e92480d612d}"
|
|
"{d49033ac-8969-488c-afb0-5cdb73957f41}"
|
|
];
|
|
};
|
|
};
|
|
|
|
cli = {
|
|
direnv.enable = true;
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
ghostty.enable = true;
|
|
};
|
|
|
|
sops.secrets.wakatime-cfg = {
|
|
format = "binary";
|
|
sopsFile = ./secrets/wakatime.cfg;
|
|
path = "${config.home.homeDirectory}/.wakatime.cfg";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
## GENERAL
|
|
teams-for-linux
|
|
enpass
|
|
youtube-music
|
|
|
|
## EDITORS
|
|
apostrophe
|
|
jetbrains.phpstorm
|
|
obsidian
|
|
|
|
## RUNTIMES and CLIs for development
|
|
bun
|
|
git
|
|
git-credential-oauth
|
|
attic-client
|
|
|
|
## PHP/Shopware
|
|
php84
|
|
php84Packages.composer
|
|
pretty-php
|
|
shopware-cli
|
|
];
|
|
|
|
home.stateVersion = "25.05";
|
|
}
|