From 9771707082e915fa4a60eec518b70872a0539b5b Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 22 Sep 2023 19:50:54 +0900 Subject: [PATCH] test --- nixos/common/modules/boot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;