waybar styles

This commit is contained in:
Kopatz
2024-04-29 16:53:11 +02:00
parent f361568d55
commit 9a9c4e4d74
11 changed files with 58 additions and 66 deletions

View File

@@ -1,7 +1,6 @@
{pkgs, config, ...}:
{
imports = [
../graphical/hyprland.nix # TODO
../kernel.nix # use latest kernel
../docker.nix
];

View File

@@ -16,7 +16,7 @@ in
jetbrains.idea-ultimate
jetbrains.clion
insomnia
nodejs_21 # needed for tabby extension
nodejs_22 # needed for tabby extension
];
#environment.sessionVariables = {

View File

@@ -32,14 +32,10 @@ in lib.mkIf cfg.enable {
enable = true;
user = "kavita";
package = let
kavitaPkgs = (import inputs.nixpkgs-kavita-update {
inherit (config.nixpkgs) config;
inherit (pkgs.stdenv.hostPlatform) system;
});
backend = kavitaPkgs.kavita.backend.overrideAttrs (old: {
backend = pkgs.kavita.backend.overrideAttrs (old: {
patches = old.patches ++ [./kavita-patches.diff ];
});
kavitaPatched = kavitaPkgs.kavita.overrideAttrs (old: {
kavitaPatched = pkgs.kavita.overrideAttrs (old: {
backend = backend;
});
in kavitaPatched;