From d777f0b226752536ea044ea1acde7c371429fbe5 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 18 Aug 2025 18:31:13 +0100 Subject: [PATCH] Revert "Add browser-sync" This reverts commit d55ccddaff0d05f49456379bed0129b498db856e. --- book/.envrc | 1 - book/flake.lock | 82 ------------------------------------------------- book/flake.nix | 29 ----------------- 3 files changed, 112 deletions(-) delete mode 100644 book/flake.lock delete mode 100644 book/flake.nix diff --git a/book/.envrc b/book/.envrc index 4d483ba..427c035 100644 --- a/book/.envrc +++ b/book/.envrc @@ -1,2 +1 @@ -use flake . use flake /home/opdavies/Code/code.oliverdavies.uk/opdavies/dev-shells#asciidoctor diff --git a/book/flake.lock b/book/flake.lock deleted file mode 100644 index 6fe9604..0000000 --- a/book/flake.lock +++ /dev/null @@ -1,82 +0,0 @@ -{ - "nodes": { - "devshell": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1741473158, - "narHash": "sha256-kWNaq6wQUbUMlPgw8Y+9/9wP0F8SHkjy24/mN3UAppg=", - "owner": "numtide", - "repo": "devshell", - "rev": "7c9e793ebe66bcba8292989a68c0419b737a22a0", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "devshell", - "type": "github" - } - }, - "flake-parts": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib" - }, - "locked": { - "lastModified": 1754487366, - "narHash": "sha256-pHYj8gUBapuUzKV/kN/tR3Zvqc7o6gdFB9XKXIp1SQ8=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "af66ad14b28a127c5c0f3bbb298218fc63528a18", - "type": "github" - }, - "original": { - "owner": "hercules-ci", - "repo": "flake-parts", - "type": "github" - } - }, - "nixpkgs": { - "locked": { - "lastModified": 1755027561, - "narHash": "sha256-IVft239Bc8p8Dtvf7UAACMG5P3ZV+3/aO28gXpGtMXI=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "005433b926e16227259a1843015b5b2b7f7d1fc3", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs-lib": { - "locked": { - "lastModified": 1753579242, - "narHash": "sha256-zvaMGVn14/Zz8hnp4VWT9xVnhc8vuL3TStRqwk22biA=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "0f36c44e01a6129be94e3ade315a5883f0228a6e", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", - "type": "github" - } - }, - "root": { - "inputs": { - "devshell": "devshell", - "flake-parts": "flake-parts", - "nixpkgs": "nixpkgs" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/book/flake.nix b/book/flake.nix deleted file mode 100644 index f22fe91..0000000 --- a/book/flake.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ - inputs = { - devshell.inputs.nixpkgs.follows = "nixpkgs"; - devshell.url = "github:numtide/devshell"; - - flake-parts.url = "github:hercules-ci/flake-parts"; - - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - }; - - outputs = - inputs: - inputs.flake-parts.lib.mkFlake { inherit inputs; } { - - imports = [ inputs.devshell.flakeModule ]; - - perSystem = - { pkgs, ... }: - { - devshells.default = { - packages = with pkgs.nodePackages; [ - browser-sync - ]; - }; - }; - - systems = [ "x86_64-linux" ]; - }; -}