diff --git a/nixos/hosts/Senko/configuration.nix b/nixos/hosts/Senko/configuration.nix index c1a2c3b..238dacf 100644 --- a/nixos/hosts/Senko/configuration.nix +++ b/nixos/hosts/Senko/configuration.nix @@ -2,6 +2,7 @@ imports = [ ./hardware-configuration.nix ./secrets/secrets.nix + ./modules/grub.nix ../../packages.nix ../../modules/bundle.nix ../../modules/adb.nix diff --git a/nixos/hosts/Senko/modules/grub.nix b/nixos/hosts/Senko/modules/grub.nix new file mode 100644 index 0000000..a101564 --- /dev/null +++ b/nixos/hosts/Senko/modules/grub.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: let + theme = pkgs.fetchFromGitHub { + owner = "Patato777"; + repo = "dotfiles"; + rev = "cc363921707807d7ad3e36b462f0df793a0fe18a"; + hash = "sha256-fpXGFNrzbV6K9hoZRX4tGieTLzhpPeGm6wn8CF4OGow="; + }; +in { + boot.loader.grub = { + gfxmodeEfi = "1920x1080"; + theme = "${theme}/grub/themes/virtuaverse"; + }; +}