Compare commits

..

No commits in common. "28953f4e57a2c4ca2ada3547a45c8d2a839d4dfc" and "a1ab95888f08020483584d028c68617bafd27b5f" have entirely different histories.

4 changed files with 12 additions and 14 deletions

View file

@ -23,9 +23,9 @@
@media (prefers-color-scheme: dark) {
:root {
--bg: #111111;
--accent-bg: #141414;
--border: #1e1e1e;
--bg: #272e33;
--accent-bg: #374145;
--border: #1e2326;
--blue: #7fbbb3;
--purple: #d699b6;
--fg: #d3c6aa;

View file

Before

Width:  |  Height:  |  Size: 198 B

After

Width:  |  Height:  |  Size: 198 B

View file

@ -1,24 +1,22 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs =
{
self,
nixpkgs,
flake-utils,
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
{
packages.website = pkgs.stdenv.mkDerivation {
name = "0xa-website";
src = src/.;
src = self;
installPhase = "cp -r . $out";
};
packages.default = self.packages.${system}.website;
packages.default = self.packages.${system}.website;
}
);
}