NixOS-Config/pkgs/restart/default.nix
2024-03-14 17:04:22 +01:00

19 lines
212 B
Nix

{
lib,
stdenv,
writeShellApplication,
}:
writeShellApplication
{
name = "restart";
runtimeInputs = [];
text = ''
# Restart script for kde
killall plasmashell
kstart plasmashell
'';
}