home/skim: init

This commit is contained in:
2025-02-26 09:57:29 +01:00
parent 8471c5139e
commit 0bd882eb1a
2 changed files with 8 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ in {
./programs/nix-index
./programs/pandoc.nix
./programs/ripgrep.nix
./programs/skim.nix
./programs/ssh
./programs/tealdeer
./programs/texlive.nix

7
home/programs/skim.nix Normal file
View File

@@ -0,0 +1,7 @@
{ ... }:
{
programs.skim = {
enable = true;
defaultCommand = "fd --type f";
};
}