From 21cf507f148f7a4ba6e5cd5f28fe538617d444ea Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Fri, 28 Feb 2025 11:00:59 -0500 Subject: [PATCH] Remove unused variables and inputs --- flake.lock | 16 ---------------- flake.nix | 7 ++----- 2 files changed, 2 insertions(+), 21 deletions(-) diff --git a/flake.lock b/flake.lock index 0706f72..69a0bb2 100644 --- a/flake.lock +++ b/flake.lock @@ -459,21 +459,6 @@ "type": "github" } }, - "nixos-hardware": { - "locked": { - "lastModified": 1740646007, - "narHash": "sha256-dMReDQobS3kqoiUCQIYI9c0imPXRZnBubX20yX/G5LE=", - "owner": "NixOS", - "repo": "nixos-hardware", - "rev": "009b764ac98a3602d41fc68072eeec5d24fc0e49", - "type": "github" - }, - "original": { - "owner": "NixOS", - "repo": "nixos-hardware", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1740463929, @@ -594,7 +579,6 @@ "inputs": { "darwin": "darwin", "home-manager": "home-manager", - "nixos-hardware": "nixos-hardware", "nixpkgs": "nixpkgs", "nixpkgs-master": "nixpkgs-master", "nixpkgs-unstable": "nixpkgs-unstable", diff --git a/flake.nix b/flake.nix index 36f38f3..7f5c349 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,6 @@ description = "nixos and macos configurations"; inputs = { - nixos-hardware.url = "github:NixOS/nixos-hardware"; nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs-master.url = "github:NixOS/nixpkgs/master"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; @@ -23,13 +22,11 @@ outputs = { - self, darwin, home-manager, nixpkgs, nixpkgs-unstable, nixpkgs-master, - nixos-hardware, stylix, ... }@inputs: @@ -60,7 +57,7 @@ home-manager.nixosModules.home-manager stylix.nixosModules.stylix ( - { config, lib, ... }: + { ... }: { config = { nix = { @@ -133,7 +130,7 @@ ./upgrade-diff.nix ( - { config, ... }: + { ... }: { config = { nixpkgs.overlays = [ (import ./overlays) ];