From 156e0815c36724a45863b06f01205cbef0e7b59b Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:15:57 +1000 Subject: [PATCH] nix: added custom grub theme --- nix/flake.nix | 1 + nix/modules/{grub.nix => boot.nix} | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) rename nix/modules/{grub.nix => boot.nix} (92%) diff --git a/nix/flake.nix b/nix/flake.nix index 80985c7..47d73a0 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -18,6 +18,7 @@ ./modules/applications.nix ./modules/firefox.nix ./modules/games.nix + ./modules/boot.nix ./hosts/pluto/conf.nix ./hosts/pluto/hardware-configuration.nix diff --git a/nix/modules/grub.nix b/nix/modules/boot.nix similarity index 92% rename from nix/modules/grub.nix rename to nix/modules/boot.nix index 0b3e198..8f83123 100644 --- a/nix/modules/grub.nix +++ b/nix/modules/boot.nix @@ -7,7 +7,7 @@ theme = pkgs.stdenv.mkDerivation { pname = "hyperfluent"; version = "v1.0.1"; - src = fetchFromGitHub { + src = pkgs.fetchFromGitHub { owner = "Coopydood"; repo = "HyperFluent-GRUB-Theme"; rev = "62e525ea2aa250e3f37669d68eb355b6cc997d64"; @@ -16,5 +16,4 @@ installPhase = "cp -r nixos $out"; }; }; - }