27 lines
587 B
Nix
27 lines
587 B
Nix
_: { }
|
|
# {
|
|
# pkgs,
|
|
# lib,
|
|
# ...
|
|
# }:
|
|
# scope "user.systemd.services.startup-sound"
|
|
# <| {
|
|
# unitConfig = {
|
|
# Description = "startup sound";
|
|
# Requires = [
|
|
# "graphical-session.target"
|
|
# ];
|
|
# After = [
|
|
# "graphical-session.target"
|
|
# "niri.target"
|
|
# "sound.target"
|
|
# "shell.service"
|
|
# ];
|
|
# PartOf = [ "graphical-session.target" ];
|
|
# };
|
|
# serviceConfig = {
|
|
# ExecStart = "${lib.getExe' pkgs.alsa-utils "aplay"} " + ../assets/startup.wav;
|
|
# Type = "oneshot";
|
|
# };
|
|
# wantedBy = [ "graphical-session.target" ];
|
|
# }
|