non important commit
This commit is contained in:
parent
ab6b1d3975
commit
8e8fee3d0b
1 changed files with 3 additions and 8 deletions
|
|
@ -1,12 +1,7 @@
|
||||||
{
|
{pkgs, ...}: let
|
||||||
pkgs,
|
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
qs_config = pkgs.callPackage ./quick_config/quick.nix {};
|
qs_config = pkgs.callPackage ./quick_config/quick.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 = {
|
||||||
Unit = {
|
Unit = {
|
||||||
|
|
@ -18,7 +13,7 @@ in {
|
||||||
WantedBy = ["graphical-session.target"];
|
WantedBy = ["graphical-session.target"];
|
||||||
};
|
};
|
||||||
Service = {
|
Service = {
|
||||||
ExecStart = "${quick_shell}/bin/qs -c ${qs_config}/shell.qml";
|
ExecStart = "${pkgs.quickshell}/bin/qs -c ${qs_config}/shell.qml";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
RestartSec = 3;
|
RestartSec = 3;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue