Remove unused variables and inputs

This commit is contained in:
Dave Gallant
2025-02-28 11:00:59 -05:00
parent 6551e9563f
commit 21cf507f14
2 changed files with 2 additions and 21 deletions

16
flake.lock generated
View File

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

View File

@@ -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) ];