NixOS-Config/pkgs/restart/default.nix

19 lines
217 B
Nix

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