My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[flake] move data to a separate output

Still available under `lib.data` for the time being since i dont wanna
break stuff

dish a548667d a05e807e

+10 -8
+7
data/default.nix
··· 1 + { 2 + flake.data = { 3 + hosts = fromTOML (builtins.readFile ./hosts.toml); 4 + services = fromTOML (builtins.readFile ./services.toml); 5 + tsNet = "coelacanth-dragon.ts.net"; 6 + }; 7 + }
+1
flake.nix
··· 129 129 ./templates 130 130 ./hosts 131 131 ./neovim 132 + ./data 132 133 ]; 133 134 134 135 # # Flake attributes
-6
lib/data/default.nix
··· 1 - { 2 - hosts = fromTOML (builtins.readFile ./hosts.toml); 3 - services = fromTOML (builtins.readFile ./services.toml); 4 - mail = fromTOML (builtins.readFile ./mail.toml); 5 - tsNet = "coelacanth-dragon.ts.net"; 6 - }
lib/data/hosts.toml data/hosts.toml
lib/data/services.toml data/services.toml
+2 -2
lib/default.nix
··· 1 - { lib, ... }: 1 + { lib, self, ... }: 2 2 let 3 - data = import ./data; 3 + inherit (self) data; 4 4 strings = import ./strings.nix { inherit lib; }; 5 5 in 6 6 {