-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathboot.nix
More file actions
20 lines (19 loc) · 555 Bytes
/
boot.nix
File metadata and controls
20 lines (19 loc) · 555 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ flakeArgs, pkgs, lib, ... }:
{
config = {
boot = {
# systemd in stage-1 initrd is cool but it doesn't work yet on at least kosame
# TODO: Check if it works now, and bug report if it still doesn't
# initrd.systemd.enable = true;
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = false;
};
plymouth = {
enable = true;
logo = flakeArgs.self.assets.images.crescent_moon_100x100;
};
};
};
}