diff options
author | tv <tv@krebsco.de> | 2023-01-15 16:02:32 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-01-16 11:05:49 +0100 |
commit | 0a3ad1b7c361897e7bf965424ab59e0cffe6673e (patch) | |
tree | fcdf0e4f23f053ce505d270807e55dc2b95e040f | |
parent | 29bbb02a427d2fed5fbe39792ab46db9f8b55c1e (diff) |
tv br: use modulesPath
-rw-r--r-- | tv/2configs/br.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tv/2configs/br.nix b/tv/2configs/br.nix index 4a8db2e38..47d657c46 100644 --- a/tv/2configs/br.nix +++ b/tv/2configs/br.nix @@ -1,8 +1,8 @@ with import ./lib; -{ config, pkgs, ... }: { +{ config, modulesPath, pkgs, ... }: { imports = [ - <nixpkgs/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix> + (modulesPath + "/services/hardware/sane_extra_backends/brscan4.nix") ]; krebs.nixpkgs.allowUnfreePredicate = pkg: any (eq (packageName pkg)) [ |