feat(hm): Add skim module

This commit is contained in:
Mr Hedgehog 2022-02-07 06:26:13 -05:00
parent 15decafba1
commit 6bef24526d
No known key found for this signature in database
GPG key ID: A5F69F6C161FDA7E
2 changed files with 9 additions and 0 deletions

View file

@ -18,6 +18,7 @@
./home/programs/nushell.nix
./home/programs/packages.nix
./home/programs/rofi.nix
./home/programs/skim.nix
./home/programs/starship.nix
./home/programs/zoxide.nix
];

8
home/programs/skim.nix Normal file
View file

@ -0,0 +1,8 @@
{
programs.skim = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
};
}