mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 04:40:05 +00:00
✨ Add Dr. Frontend user for work, cleanup nixos modules
Some checks failed
Trufflehog: check for exposed secrets / Run trufflehog (push) Waiting to run
Nix: check for unused code / Run deadnix (push) Waiting to run
Nix: validate flake / Validate x86_64-linux (push) Waiting to run
Nix: build nixos-/home modules / Validate x86_64-linux (push) Has been cancelled
Some checks failed
Trufflehog: check for exposed secrets / Run trufflehog (push) Waiting to run
Nix: check for unused code / Run deadnix (push) Waiting to run
Nix: validate flake / Validate x86_64-linux (push) Waiting to run
Nix: build nixos-/home modules / Validate x86_64-linux (push) Has been cancelled
This commit is contained in:
parent
4bf0f889ab
commit
042d026901
5 changed files with 84 additions and 4 deletions
50
homes/x86_64-linux/drfrontend/default.nix
Normal file
50
homes/x86_64-linux/drfrontend/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
puzzlevision = {
|
||||
themes.catppuccin.enable = true;
|
||||
apps.zed.enable = true;
|
||||
apps.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}"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
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
|
||||
youtube-music
|
||||
|
||||
## WEB
|
||||
ungoogled-chromium
|
||||
|
||||
## EDITORS
|
||||
jetbrains.phpstorm
|
||||
|
||||
## RUNTIMES and CLIs for development
|
||||
bun
|
||||
git
|
||||
];
|
||||
|
||||
home.stateVersion = "25.05";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue