aboutsummaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-05-12 00:32:22 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-05-12 00:32:22 +0200
commit55fae2677ecb8a3d8e2adf653e2784a1c70829a6 (patch)
treebc62e5f9812bb2fbefec65216d1c57820eec436e /hosts
parenttreewide: Switch to npins (diff)
downloadnixos-config-55fae2677ecb8a3d8e2adf653e2784a1c70829a6.zip
treewide: Remove all references to `self.inputs`
That doesn't work anymore with the npins sources.
Diffstat (limited to 'hosts')
-rw-r--r--hosts/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/hosts/default.nix b/hosts/default.nix
index 64768074..fc18d556 100644
--- a/hosts/default.nix
+++ b/hosts/default.nix
@@ -9,6 +9,8 @@
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
self,
+ sources,
+ nixpkgs,
system,
openPRsNixpkgs,
packageSets,
@@ -24,18 +26,19 @@
};
generateHost = _: path:
- self.inputs.nixpkgs.lib.nixosSystem {
+ nixpkgs.lib.nixosSystem {
specialArgs = {
inherit
+ self
libraries
modules
- self
;
};
modules = [
{
_module.args = {
inherit
+ sources
# extra package sources
openPRsNixpkgs
packageSets