Format everything with alejandra
This commit is contained in:
parent
82bbd7ce87
commit
7888103b1e
100 changed files with 2827 additions and 2756 deletions
|
|
@ -1,16 +1,20 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Beep as soon as possible in the initrd
|
||||
boot.initrd = {
|
||||
kernelModules = [ "pcspkr" ];
|
||||
extraFiles.beep.source = pkgs.beep;
|
||||
postDeviceCommands = "/beep/bin/beep -f 3000 -l 50 -r 2";
|
||||
};
|
||||
/*systemd.services.startupBeep = {
|
||||
description = "Beep when system started booting";
|
||||
wantedBy = [ "sysinit.target" ];
|
||||
script = "${pkgs.beep}/bin/beep -f 3000 -l 50 -r 2";
|
||||
serviceConfig = { Type = "oneshot"; };
|
||||
};*/
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
# Beep as soon as possible in the initrd
|
||||
boot.initrd = {
|
||||
kernelModules = ["pcspkr"];
|
||||
extraFiles.beep.source = pkgs.beep;
|
||||
postDeviceCommands = "/beep/bin/beep -f 3000 -l 50 -r 2";
|
||||
};
|
||||
/*
|
||||
systemd.services.startupBeep = {
|
||||
description = "Beep when system started booting";
|
||||
wantedBy = [ "sysinit.target" ];
|
||||
script = "${pkgs.beep}/bin/beep -f 3000 -l 50 -r 2";
|
||||
serviceConfig = { Type = "oneshot"; };
|
||||
};
|
||||
*/
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue