non important commit
This commit is contained in:
parent
9e551c1ad8
commit
232222bde5
1 changed files with 3 additions and 8 deletions
|
|
@ -1,12 +1,7 @@
|
||||||
{
|
{pkgs, ...}: let
|
||||||
pkgs,
|
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
qs_config = pkgs.callPackage ./package.nix {};
|
qs_config = pkgs.callPackage ./package.nix {};
|
||||||
quick_shell = inputs.quickshell.packages.${pkgs.system}.default;
|
|
||||||
in {
|
in {
|
||||||
environment.systemPackages = [quick_shell];
|
environment.systemPackages = [pkgs.quickshell];
|
||||||
|
|
||||||
systemd.user.services.quickshell = {
|
systemd.user.services.quickshell = {
|
||||||
restartIfChanged = true;
|
restartIfChanged = true;
|
||||||
|
|
@ -17,7 +12,7 @@ in {
|
||||||
after = ["graphical-session.target"];
|
after = ["graphical-session.target"];
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = "${quick_shell}/bin/qs -c ${qs_config}";
|
ExecStart = "${pkgs.quickshell}/bin/qs -c ${qs_config}";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
RestartSec = 3;
|
RestartSec = 3;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue