Compare commits

...

2 Commits

Author SHA1 Message Date
Hoang Nguyen 338a5d5336
Limit the number of boot entries
to avoid /boot to go out of disk space.
2024-02-25 00:00:00 +07:00
Hoang Nguyen 52506298a1
Trying the white logo this time for plymouth 2024-02-25 00:00:00 +07:00
2 changed files with 2 additions and 7 deletions

View File

@ -23,13 +23,7 @@
# Being fancy. Other people have already taken care of all the tough setting-up parts :)
boot.plymouth = {
enable = true;
logo = pkgs.fetchurl {
url = "https://github.com/NixOS/nixos-artwork/raw/master/logo/nixos.svg.png";
hash = "sha256-9+OfqfP5LmubdTcwBkS/AnOX4wZI2tKHLu5nhi43xcc=";
};
extraConfig = ''
DeviceScale=2
'';
logo = "${pkgs.nixos-icons}/share/icons/hicolor/72x72/apps/nix-snowflake.png";
};
# Most valuable directories (.e.g /home, /gnu, /nix) are persisted using ZFS datasets.

View File

@ -11,6 +11,7 @@
# Use the systemd-boot EFI boot loader.
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.configurationLimit = 10; # prevent /boot to go out of disk space
# Necessary ~~evils~~ binary blobs
# Ref: https://github.com/NixOS/nixos-hardware/tree/master/common/{cpu,gpu}/amd