nix/graphical/startup.nix
2026-03-09 13:58:20 +11:00

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" ];
# }