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
This commit is contained in:
Julian Mutter 2025-02-28 18:49:56 +01:00
parent ca0ad1b6d6
commit 5e224b9c3f

View File

@ -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";