all repos — website @ e2241b8c0d1a0e5bd48d27f6ac98b3a54143da4a

My website

Simplify flake
Alan Pearce alan@alanpearce.eu
Thu, 11 Apr 2024 19:53:07 +0200
commit

e2241b8c0d1a0e5bd48d27f6ac98b3a54143da4a

parent

8141685a940a33873ae6684a3aa07809c515dfc8

2 files changed, 2 insertions(+), 38 deletions(-)

jump to
M flake.lockflake.lock
@@ -34,21 +34,6 @@ "repo": "flake-utils",         "type": "github"
       }
     },
-    "flockenzeit": {
-      "locked": {
-        "lastModified": 1671185345,
-        "narHash": "sha256-+5IWi+iJAYcRxvLN15hKO2hVwNokfN3U+lvWf/zFtCg=",
-        "owner": "balsoft",
-        "repo": "Flockenzeit",
-        "rev": "90abba65671690d95b5d28ce6dd8de7959aa1339",
-        "type": "github"
-      },
-      "original": {
-        "owner": "balsoft",
-        "repo": "Flockenzeit",
-        "type": "github"
-      }
-    },
     "nixpkgs": {
       "locked": {
         "lastModified": 1712757991,
@@ -69,7 +54,6 @@ "root": {       "inputs": {
         "flake-compat": "flake-compat",
         "flake-utils": "flake-utils",
-        "flockenzeit": "flockenzeit",
         "nixpkgs": "nixpkgs"
       }
     },
M flake.nixflake.nix
@@ -1,14 +1,13 @@ {
   description = "My website, alanpearce.eu";
   inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
-  inputs.flockenzeit.url = "github:balsoft/Flockenzeit";
   inputs.flake-utils.url = "github:numtide/flake-utils";
   inputs.flake-compat = {
     url = "github:edolstra/flake-compat";
     flake = false;
   };
 
-  outputs = { self, nixpkgs, flockenzeit, flake-utils, ... }:
+  outputs = { nixpkgs, flake-utils, ... }:
     flake-utils.lib.eachDefaultSystem
       (system:
         let
@@ -23,31 +22,12 @@ git           ];
         in
         rec {
-          packages = {
-            default = pkgs.stdenv.mkDerivation {
-              name = "alanpearce.eu";
-              src = self;
-
-              enableParallelBuilding = true;
-              makeFlags = [ "PREFIX=$(out)/public" ];
-
-              inherit nativeBuildInputs;
-
-              dontFixup = true;
-            };
-            docker = import ./docker.nix {
-              inherit self pkgs flockenzeit;
-              website = packages.default;
-            };
-          };
           devShells = {
             default = pkgs.mkShell {
               packages = with pkgs; [
                 bun
                 flyctl
-              ] ++ nativeBuildInputs ++ (with pkgs.nodePackages; [
-                prettier
-              ]);
+              ] ++ nativeBuildInputs;
             };
           };
         });