dots/nix/modules/boot.nix
Nico 5e2f0c8191 revert: "nix: add plymouth"
This reverts commit 84780229db3105ba94eea72fe1f18ea206358382.
2025-05-03 16:31:41 +10:00

19 lines
464 B
Nix

{ config, lib, pkgs, ... }:
# theming of grub
{
boot.loader.grub = {
theme = pkgs.stdenv.mkDerivation {
pname = "hyperfluent";
version = "v1.0.1";
src = pkgs.fetchFromGitHub {
owner = "Coopydood";
repo = "HyperFluent-GRUB-Theme";
rev = "62e525ea2aa250e3f37669d68eb355b6cc997d64";
hash = "sha256-Als4Tp6VwzwHjUyC62mYyiej1pZL9Tzj4uhTRoL+U9Q=";
};
installPhase = "cp -r nixos $out";
};
};
}