diff options
author | Franck Cuny <franck@fcuny.net> | 2023-09-14 19:38:34 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-09-14 19:39:37 -0700 |
commit | 6400fa00a6fd5633a1cc46faea9428882acb7004 (patch) | |
tree | 5d8873957acacb39d0ed50cd6a46745db1cb1211 | |
parent | flake.lock: Update (diff) | |
download | fcuny.net-6400fa00a6fd5633a1cc46faea9428882acb7004.tar.gz |
track nix' master instead of an old release
Drop flyctl since I'm not deploying it there anymore.
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index 3906fbe..878be9f 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "Franck Cuny's personal website."; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/release-22.05"; + nixpkgs.url = "github:nixos/nixpkgs/master"; flake-utils.url = "github:numtide/flake-utils"; }; @@ -46,6 +46,6 @@ defaultPackage = self.packages."${system}".container; devShell = - pkgs.mkShell { buildInputs = with pkgs; [ hugo flyctl git ]; }; + pkgs.mkShell { buildInputs = with pkgs; [ hugo git ]; }; }); } |