feat: add swww autostart and link desktop entry creatr
This commit is contained in:
parent
787d7b6640
commit
753377fc3f
7 changed files with 42 additions and 22 deletions
BIN
assets/favicon-kitchenowl.png
Normal file
BIN
assets/favicon-kitchenowl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
|
@ -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")
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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
16
home/graphical/swww.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
#};
|
||||
#};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
config,
|
||||
options,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
|
|
@ -60,4 +60,10 @@ in
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
slugify =
|
||||
let
|
||||
inherit (lib.strings) sanitizeDerivationName;
|
||||
in
|
||||
str: (sanitizeDerivationName (lib.toLower str));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue