Removed old stuff

This commit is contained in:
2026-05-04 17:44:19 +02:00
parent 386829caf5
commit 78ee510d83
9094 changed files with 0 additions and 117537 deletions
-22
View File
@@ -1,22 +0,0 @@
# home/desktop/hyprshell.nix (Home-Manager module)
{ config, pkgs, lib, flakeRoot, ... }:
{
xdg.enable = true;
home.packages = [ pkgs.hyprshell ];
# Autostart (systemd user service)
systemd.user.services.hyprshell = {
Unit = {
Description = "Hyprshell (window switcher / launcher)";
PartOf = [ "graphical-session.target" ];
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.hyprshell}/bin/hyprshell";
Restart = "on-failure";
RestartSec = 1;
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}