From 99acd3cec3b6ab7dcf24fbf74b53eda3424795db Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Thu, 1 Aug 2024 01:50:11 -0700 Subject: [PATCH] remove nixpkgs url --- flake.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index caa9df9..14d7857 100644 --- a/flake.nix +++ b/flake.nix @@ -1,11 +1,8 @@ { description = "A very basic flake"; - inputs = { - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - }; - - outputs = { ... }@inputs: { + inputs = { }; + outputs = { ... }: { homeManagerModule = import ./module.nix; }; }