mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
fixed inaccurate boot image location
This commit is contained in:
parent
3d67b76cee
commit
e4babb3003
1 changed files with 6 additions and 2 deletions
|
|
@ -1,4 +1,8 @@
|
||||||
inputs: {lib, ...}: {
|
inputs: {
|
||||||
|
lib,
|
||||||
|
self,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [(import ./stage2patch.nix inputs)];
|
imports = [(import ./stage2patch.nix inputs)];
|
||||||
environment.etc = {
|
environment.etc = {
|
||||||
"issue" = {
|
"issue" = {
|
||||||
|
|
@ -14,7 +18,7 @@ inputs: {lib, ...}: {
|
||||||
plymouth = {
|
plymouth = {
|
||||||
enable = lib.mkDefault true;
|
enable = lib.mkDefault true;
|
||||||
theme = "breeze";
|
theme = "breeze";
|
||||||
logo = ../misc/nixos.png;
|
logo = "${self}/misc/nixos.png";
|
||||||
};
|
};
|
||||||
loader = {
|
loader = {
|
||||||
systemd-boot = {
|
systemd-boot = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue