diff --git a/nixos/common/modules/boot.nix b/nixos/common/modules/boot.nix index 44d52d58..ed960bfc 100644 --- a/nixos/common/modules/boot.nix +++ b/nixos/common/modules/boot.nix @@ -1,4 +1,4 @@ -{ config, pkgs, desktop, ... }: { +{ lib, config, pkgs, desktop, ... }: { # IF we're booting into a GUI, load in pretty things imports = [ ] ++ lib.optional (builtins.isString desktop) ./plymouth.nix;