From 823388f3a28ef55dbe4bd30f1f1fc27b9032f441 Mon Sep 17 00:00:00 2001 From: tdpeuter Date: Fri, 11 Aug 2023 17:16:37 +0200 Subject: [PATCH] Fix non-existent input overrides --- nixos/flake.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/nixos/flake.nix b/nixos/flake.nix index 100b1c2..2440f38 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -7,18 +7,12 @@ devshell = { url = "github:numtide/devshell"; - inputs = { - flake-utils.follows = "flake-utils"; - nixpkgs.follows = "nixpkgs"; - }; + inputs.nixpkgs.follows = "nixpkgs"; }; flake-utils.url = "github:numtide/flake-utils"; home-manager = { url = "github:nix-community/home-manager/release-23.05"; - inputs = { - nixpkgs.follows = "nixpkgs"; - utils.follows = "flake-utils"; - }; + inputs.nixpkgs.follows = "nixpkgs"; }; sops-nix = { url = "github:Mic92/sops-nix";