Compare commits
2 commits
fcd583a063
...
273bcd9ffd
| Author | SHA1 | Date | |
|---|---|---|---|
| 273bcd9ffd | |||
| 7d96e010ed |
4 changed files with 23 additions and 1 deletions
|
|
@ -4,6 +4,6 @@
|
|||
imports = [
|
||||
./plasma.nix
|
||||
./sddm.nix
|
||||
./kate.nix
|
||||
./programs
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
'';
|
||||
|
|
|
|||
7
roles/kde/programs/default.nix
Normal file
7
roles/kde/programs/default.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./kate.nix
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue