Update flake dependencies
This commit is contained in:
parent
47d49f4534
commit
08cffc2e6a
2 changed files with 41 additions and 16 deletions
10
flake.nix
10
flake.nix
|
@ -2,16 +2,20 @@
|
|||
description = "My personal website";
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
devshell = {
|
||||
url = "github:numtide/devshell";
|
||||
inputs = {
|
||||
flake-utils.follows = "flake-utils";
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
systems.follows = "systems";
|
||||
};
|
||||
};
|
||||
flake-utils = {
|
||||
url = "github:numtide/flake-utils";
|
||||
inputs.systems.follows = "systems";
|
||||
};
|
||||
systems.url = "github:nix-systems/default";
|
||||
};
|
||||
outputs = { self, nixpkgs, devshell, flake-utils }:
|
||||
outputs = { self, nixpkgs, devshell, flake-utils, ... }:
|
||||
flake-utils.lib.eachDefaultSystem
|
||||
(system:
|
||||
let
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue