Compare commits

...

2 commits

4 changed files with 23 additions and 1 deletions

View file

@ -4,6 +4,6 @@
imports = [
./plasma.nix
./sddm.nix
./kate.nix
./programs
];
}

View file

@ -23,6 +23,20 @@ let
AccentColor = "172,53,164" ; };
};
balooExcludedDirs = lib.strings.intersperse "," [
"$HOME/.cache/"
"$HOME/.config/"
"$HOME/.local/"
];
baloofilerc = lib.generators.toINI {} {
General = {
# The [$e] part allows you to use environment variables
"exclude folders[$e]" = lib.strings.concatStrings balooExcludedDirs;
};
};
# Make custom packages
breezeTint = pkgs.stdenv.mkDerivation {
name = "breeze-tint";
src = "${pkgs.breeze-qt5}";
@ -60,6 +74,7 @@ let
set -x
mkdir -p $out/etc/xdg
echo "${kdeglobals}" > $out/etc/xdg/kdeglobals
echo '${baloofilerc}' > $out/etc/xdg/baloofilerc
runHook postInstall
'';

View file

@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./kate.nix
];
}