Removing unused variables.
This commit is contained in:
parent
ed5359c0ad
commit
5a2808443d
3 changed files with 3 additions and 3 deletions
|
@ -66,7 +66,7 @@
|
|||
|
||||
# The `@` syntax here is used to alias the attribute set of the
|
||||
# inputs's parameter, making it convenient to use inside the function.
|
||||
outputs = { self, nixpkgs-stable, nixpkgs-unstable, home-manager-stable, home-manager-unstable, hy3, ... }@inputs:
|
||||
outputs = { self, nixpkgs-stable, nixpkgs-unstable, home-manager-stable, home-manager-unstable, ... }@inputs:
|
||||
let
|
||||
inherit (self) outputs;
|
||||
in
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
imports = [ ../cachix.nix ];
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
|
||||
{ config, lib, pkgs, inputs, ... }:
|
||||
{ pkgs, inputs, ... }:
|
||||
let
|
||||
upsPassword = "illgettoiteventually";
|
||||
vendorid = "0764";
|
||||
|
|
Reference in a new issue