1
0

configuration/common: Enable systemd stage-1 by default

This commit is contained in:
clerie 2024-06-10 17:51:16 +02:00
parent d9936a7d61
commit dc3417e5b8
Signed by: clerie
GPG Key ID: BD9F56480870BAD2
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,7 @@
{
imports = [
./backup.nix
./initrd.nix
./locale.nix
./networking.nix
./nix.nix

View File

@ -0,0 +1,7 @@
{ lib, ... }:
{
boot.initrd.systemd.enable = lib.mkDefault true;
}