mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
use emojis for i3status-rust remove overlays configure mail via home-manager adapt to 20.03 config options automatically symlink cloud directories into home
8 lines
226 B
Nix
8 lines
226 B
Nix
{ pkgs, ... }:
|
|
{
|
|
writeTOML = object: pkgs.runCommand "generated.toml" {} ''
|
|
echo '${builtins.toJSON object}' | ${pkgs.remarshal}/bin/json2toml > $out
|
|
'';
|
|
toTOML = object: builtins.readFile (pkgs.writeTOML object);
|
|
}
|