tangled
alpha
login
or
join now
nel.pet
/
cyclamen
4
fork
atom
NixOS and Home Manager config
4
fork
atom
overview
issues
pulls
pipelines
feat: systemd initrd
nel.pet
6 months ago
cbdd23fa
8acd72f9
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+6
2 changed files
expand all
collapse all
unified
split
modules
nixos
system
boot
default.nix
initrd.nix
+1
modules/nixos/system/boot/default.nix
···
1
1
{
2
2
imports = [
3
3
+
./initrd.nix
3
4
./loader.nix
4
5
];
5
6
}
+5
modules/nixos/system/boot/initrd.nix
···
1
1
+
{
2
2
+
# Systemd initrd is experimental but generally functional for most systems.
3
3
+
# Cyclamen imposes the use of the systemd based initrd.
4
4
+
boot.initrd.systemd.enable = true;
5
5
+
}