mirror of
https://github.com/nix-community/home-manager
synced 2024-12-04 17:09:47 +01:00
19 lines
401 B
Nix
19 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}
|
|
'';
|
|
}
|