feat: add swww autostart and link desktop entry creatr

This commit is contained in:
Nydragon 2024-10-04 01:21:58 +02:00
parent 787d7b6640
commit 753377fc3f
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
7 changed files with 42 additions and 22 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View file

@ -1,12 +1,24 @@
{ pkgs, ... }:
{
xdg.desktopEntries = {
paperless = {
name = "Paperless";
exec = "${pkgs.xdg-utils}/bin/xdg-open https://paperless.ccnlc.eu";
self,
pkgs,
lib,
...
}:
let
inherit (lib.my) slugify;
mkURLEntry = name: url: icon: {
name = slugify name;
value = {
inherit name icon;
terminal = false;
categories = [ "Office" ];
icon = ../../assets/favicon-paperless.png;
exec = "${pkgs.xdg-utils}/bin/xdg-open \"${url}\"";
};
};
in
{
xdg.desktopEntries = builtins.listToAttrs [
(mkURLEntry "Paperless" "https://paperless.ccnlc.eu" "${self}/assets/favicon-paperless.png")
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
];
}

View file

@ -6,5 +6,6 @@
./lollypop
./fuzzel.nix
./gammastep.nix # default because I need to protect my peepers
./swww.nix
];
}

16
home/graphical/swww.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
systemd.user.services.swww = {
Install.WantedBy = [ "graphical-session.target" ];
Unit = {
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
ExecStart = "${pkgs.swww}/bin/swww-daemon";
Restart = "on-failure";
};
};
}

View file

@ -32,19 +32,5 @@ in
Restart = "on-failure";
};
};
# systemd.user.services.nysh = {
#Install.WantedBy = [ "graphical-session.target" ];
#Unit = {
#After = [ "graphical-session-pre.target" ];
#PartOf = [ "graphical-session.target" ];
#};
#Service = {
#Type = "simple";
#ExecStart = "/bin/sh -lc ${cfg.package}/bin/nysh";
#Restart = "on-failure";
#};
#};
};
}

View file

@ -2,7 +2,6 @@
config,
options,
lib,
pkgs,
...
}:
let

View file

@ -60,4 +60,10 @@ in
};
};
};
slugify =
let
inherit (lib.strings) sanitizeDerivationName;
in
str: (sanitizeDerivationName (lib.toLower str));
}