mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 04:40:05 +00:00
✨ Add custom packages support through pkgs directory
This commit is contained in:
parent
f6058e8547
commit
6c0cc52a3c
10 changed files with 46 additions and 32 deletions
|
@ -15,5 +15,6 @@ in
|
|||
@import "onebar/onebar.css";
|
||||
'';
|
||||
|
||||
home.file.".mozilla/firefox/default/chrome/onebar/onebar.css".source = ./onebar.css;
|
||||
home.file.".mozilla/firefox/default/chrome/onebar/onebar.css".source =
|
||||
mkIf config.programs.firefox.enable ./onebar.css;
|
||||
}
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
/* frappe */
|
||||
@import url("https://youtubemusic.catppuccin.com/src/frappe.css");
|
||||
|
||||
html:not(.style-scope) {
|
||||
--ctp-accent: var(--ctp-blue) !important;
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
/* latte */
|
||||
@import url("https://youtubemusic.catppuccin.com/src/latte.css");
|
||||
|
||||
html:not(.style-scope) {
|
||||
--ctp-accent: var(--ctp-blue) !important;
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
/* macchiato */
|
||||
@import url("https://youtubemusic.catppuccin.com/src/macchiato.css");
|
||||
|
||||
html:not(.style-scope) {
|
||||
--ctp-accent: var(--ctp-blue) !important;
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
/* mocha */
|
||||
@import url("https://youtubemusic.catppuccin.com/src/mocha.css");
|
||||
|
||||
html:not(.style-scope) {
|
||||
--ctp-accent: var(--ctp-blue) !important;
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
}
|
|
@ -7,7 +7,6 @@
|
|||
imports = [
|
||||
./apps/discord
|
||||
./apps/firefox
|
||||
./apps/youtube-music
|
||||
];
|
||||
|
||||
puzzlevision = {
|
||||
|
@ -34,6 +33,10 @@
|
|||
path = "${config.home.homeDirectory}/.wakatime.cfg";
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
## GENERAL
|
||||
ghostty
|
||||
|
@ -53,6 +56,7 @@
|
|||
## RUNTIMES and CLIs for development
|
||||
bun
|
||||
git
|
||||
git-credential-oauth
|
||||
attic-client
|
||||
];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue