homeManager: remove .recursive=true;

This commit is contained in:
Primrose 2024-08-09 11:02:41 +02:00
parent 2f67bab65a
commit 51ab4c26bd
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
3 changed files with 44 additions and 55 deletions

View file

@ -1,10 +1,5 @@
{ config, lib, ... }:
{
programs.btop.enable = true;
# Link manually to get the theme along with the config
xdg.configFile.btop = lib.mkIf config.programs.btop.enable {
recursive = true;
source = ./btop;
};
xdg.configFile.btop.source = lib.mkIf config.programs.btop.enable ./btop;
}