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"; }; }; - }