mirror of
https://github.com/nix-community/home-manager
synced 2024-12-05 01:19:46 +01:00
20 lines
401 B
Nix
20 lines
401 B
Nix
|
{
|
||
|
programs.silicon = {
|
||
|
enable = true;
|
||
|
settings = ''
|
||
|
--shadow-color '#555'
|
||
|
--background '#fff'
|
||
|
--shadow-blur-radius 30
|
||
|
--no-window-controls
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
test.stubs.silicon = { };
|
||
|
|
||
|
nmt.script = let configFile = "home-files/.config/silicon/config";
|
||
|
in ''
|
||
|
assertFileExists "${configFile}"
|
||
|
assertFileContent "${configFile}" ${./basic-configuration}
|
||
|
'';
|
||
|
}
|