From 5e224b9c3f4b49c0365f852611b04715a1c3a0a8 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Fri, 28 Feb 2025 18:49:56 +0100 Subject: [PATCH] Fix flake inputs being thunk instead of set I turns out one should not handle the inputs section as nix code, or weird things happen --- flake.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 12b2d94..e1cedeb 100644 --- a/flake.nix +++ b/flake.nix @@ -1,12 +1,10 @@ { description = "Home Manager configuration of julian"; - inputs = rec { - nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11"; + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; - nixpkgs = nixpkgs-stable; - deploy-rs.url = "github:serokell/deploy-rs"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";