run nixfmt

This commit is contained in:
2025-10-02 10:08:12 +00:00
parent c05cb4d125
commit dd6fe450fb
22 changed files with 529 additions and 442 deletions

View File

@@ -1,24 +1,30 @@
{ inputs, config, pkgs, system, ... }:
let
pkg = inputs.quickshell.packages.${system}.quickshell;
{
inputs,
config,
pkgs,
system,
...
}:
let
pkg = inputs.quickshell.packages.${system}.quickshell;
in
{
xdg.configFile."quickshell" = {
recursive = true;
source = config.lib.file.mkOutOfStoreSymlink "/home/doloro/dotfiles/quickshell/";
};
systemd.user.services.quickshell = {
Unit = {
Description = "Quickshell daemon";
After = [ "hyprland-session.target" ];
};
Install = {
WantedBy = [ "default.target" ];
};
Service = {
ExecStart = "${pkg}/bin/quickshell";
Restart = "on-failure";
RestartSec = "5s";
};
xdg.configFile."quickshell" = {
recursive = true;
source = config.lib.file.mkOutOfStoreSymlink "/home/doloro/dotfiles/quickshell/";
};
systemd.user.services.quickshell = {
Unit = {
Description = "Quickshell daemon";
After = [ "hyprland-session.target" ];
};
Install = {
WantedBy = [ "default.target" ];
};
Service = {
ExecStart = "${pkg}/bin/quickshell";
Restart = "on-failure";
RestartSec = "5s";
};
};
}