1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat: big upgrade to 20.03

use emojis for i3status-rust
remove overlays
configure mail via home-manager
adapt to 20.03 config options
automatically symlink cloud directories into home
This commit is contained in:
Kierán Meinhardt
2020-04-22 17:42:45 +02:00
parent 49c3ab78d1
commit e21eb7887c
27 changed files with 212 additions and 375 deletions

7
lib/default.nix Normal file
View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
writeTOML = object: pkgs.runCommand "generated.toml" {} ''
echo '${builtins.toJSON object}' | ${pkgs.remarshal}/bin/json2toml > $out
'';
toTOML = object: builtins.readFile (pkgs.writeTOML object);
}