diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-17 20:56:55 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-17 20:56:55 +0200 |
commit | 505a2a5b9f11b998bd4263d79192267b55868c73 (patch) | |
tree | d29b4bc5aa0f62cb96d77aa9d9d08b4d8b260880 /hosts | |
parent | Refractor and move neovim to be a system pkg (diff) | |
download | nixos-config-505a2a5b9f11b998bd4263d79192267b55868c73.tar.gz nixos-config-505a2a5b9f11b998bd4263d79192267b55868c73.tar.bz2 nixos-config-505a2a5b9f11b998bd4263d79192267b55868c73.zip |
Grub: Remove splash image
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/configuration.nix | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 738867d..ae90b8b 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -11,6 +11,7 @@ # Use the GRUB 2 boot loader. boot.loader.grub.enable = true; boot.loader.grub.version = 2; + boot.loader.grub.splashImage = null; # boot.loader.grub.efiSupport = true; # boot.loader.grub.efiInstallAsRemovable = true; # boot.loader.efi.efiSysMountPoint = "/boot/efi"; @@ -71,13 +72,6 @@ neovim ]; - /*programs.neovim = { - enable = true; - viAlias = true; - vimAlias = true; - plugins = with pkgs.vimPlugins; [vim-addon-nix youcompleteme]; - };*/ - # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; |