remove nixpkgs input from modules/ or machines/

This commit is contained in:
colin 2022-08-11 17:05:10 -07:00
parent c162225789
commit 2ba1678cd8
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
in (nixosSystem {
# by default the local system is the same as the target, employing emulation when they differ
system = target;
specialArgs = { inherit nixpkgs mobile-nixos home-manager impermanence; };
specialArgs = { inherit mobile-nixos home-manager impermanence; };
modules = [
./modules
./machines/${name}

View File

@ -1,4 +1,4 @@
{ lib, pkgs, nixpkgs, ... }:
{ lib, pkgs, ... }:
let
# use the last commit on the 5.18 branch (5.18.14)
# manjaro's changes between kernel patch versions tend to be minimal if any.