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 = {
|
self,
|
||||||
paperless = {
|
pkgs,
|
||||||
name = "Paperless";
|
lib,
|
||||||
exec = "${pkgs.xdg-utils}/bin/xdg-open https://paperless.ccnlc.eu";
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib.my) slugify;
|
||||||
|
|
||||||
|
mkURLEntry = name: url: icon: {
|
||||||
|
name = slugify name;
|
||||||
|
value = {
|
||||||
|
inherit name icon;
|
||||||
terminal = false;
|
terminal = false;
|
||||||
categories = [ "Office" ];
|
exec = "${pkgs.xdg-utils}/bin/xdg-open \"${url}\"";
|
||||||
icon = ../../assets/favicon-paperless.png;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
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
|
./lollypop
|
||||||
./fuzzel.nix
|
./fuzzel.nix
|
||||||
./gammastep.nix # default because I need to protect my peepers
|
./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";
|
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,
|
config,
|
||||||
options,
|
options,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
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