From 9faa3e06ef1c947504c22bad04b3440996afb76c Mon Sep 17 00:00:00 2001 From: fleaz Date: Sun, 5 Jun 2022 21:57:48 +0200 Subject: [PATCH] fix missing pkgs import --- modules/cups.nix | 2 +- roles/all.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cups.nix b/modules/cups.nix index af5b3d9..a328285 100644 --- a/modules/cups.nix +++ b/modules/cups.nix @@ -1,4 +1,4 @@ -{ +{pkgs, ...}:{ # Enable CUPS to print documents. services.printing.enable = true; services.printing.drivers = [ pkgs.splix ]; diff --git a/roles/all.nix b/roles/all.nix index c4504e4..03e0474 100644 --- a/roles/all.nix +++ b/roles/all.nix @@ -1,4 +1,4 @@ -{ +{pkgs, ...}:{ imports = [ ../home-manager/default.nix