all repos — eyes-like-fire @ 8c9052872a27e7fb8a442db9240da01551b534a5

Source code for the main eyes-like-fire website

Initial commit
Juniper Beatitudes [email protected]
Fri, 04 Jul 2025 14:01:11 -0700
commit

8c9052872a27e7fb8a442db9240da01551b534a5

parent

3f383d01062e701e699c33ca01fded36f05a924c

2 files changed, 15 insertions(+), 0 deletions(-)

jump to
A flake.nix

@@ -0,0 +1,15 @@

+{ + description = "A very basic flake"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + }; + + outputs = { self, nixpkgs }: { + + packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello; + + packages.x86_64-linux.default = self.packages.x86_64-linux.hello; + + }; +}