1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-12-04 17:09:47 +01:00
home-manager/tests/modules/programs/silicon/themes.nix
2024-05-10 12:55:29 +02:00

29 lines
690 B
Nix

{ pkgs, ... }:
let themeName = "dracula";
in {
programs.silicon = {
enable = true;
themes = {
${themeName} = {
src = pkgs.fetchFromGitHub {
owner = "dracula";
repo = "sublime";
rev = "26c57ec282abcaa76e57e055f38432bd827ac34e";
sha256 = "019hfl4zbn4vm4154hh3bwk6hm7bdxbr1hdww83nabxwjn99ndhv";
};
file = "Dracula.tmTheme";
};
};
};
test.stubs.silicon = { };
nmt.script = let
themeFile = "home-files/.config/silicon/themes/${themeName}.tmTheme";
cacheFile = "home-files/.cache/silicon/themes.bin";
in ''
assertFileExists "${themeFile}"
assertFileExists "${cacheFile}"
'';
}