mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Creating a sherlock module for the sherlock launcher. Prefer a file be controlled by a single option and using settings for the main config file. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
11 lines
394 B
Nix
11 lines
394 B
Nix
{
|
|
programs.sherlock.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/sherlock/config.toml
|
|
assertPathNotExists home-files/.config/sherlock/sherlock_alias.json
|
|
assertPathNotExists home-files/.config/sherlock/fallback.json
|
|
assertPathNotExists home-files/.config/sherlock/sherlockignore
|
|
assertPathNotExists home-files/.config/sherlock/main.css
|
|
'';
|
|
}
|