From 55fae2677ecb8a3d8e2adf653e2784a1c70829a6 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 12 May 2026 00:32:22 +0200 Subject: treewide: Remove all references to `self.inputs` That doesn't work anymore with the npins sources. --- modules/by-name/ni/nixos-shell/module.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/by-name/ni/nixos-shell/module.nix') diff --git a/modules/by-name/ni/nixos-shell/module.nix b/modules/by-name/ni/nixos-shell/module.nix index 8dda2890..3556a98b 100644 --- a/modules/by-name/ni/nixos-shell/module.nix +++ b/modules/by-name/ni/nixos-shell/module.nix @@ -11,10 +11,11 @@ lib, config, pkgs, - self, + sources, ... }: let cfg = config.soispha.nixos-shell; + nixpkgs = sources.loadFlake "nixpkgs"; in { options.soispha.nixos-shell = { enable = lib.mkEnableOption "nixos-shell"; @@ -85,7 +86,7 @@ in { }; config = let - vmSystem = self.inputs.nixpkgs.lib.nixosSystem { + vmSystem = nixpkgs.lib.nixosSystem { inherit (cfg.configuration) specialArgs; modules = [ -- cgit 1.4.1