feat(hyprland): init

This commit is contained in:
Kat Inskip 2024-03-07 17:05:22 -08:00
parent 8872b78a07
commit 8820db6792
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
23 changed files with 957 additions and 18 deletions

View file

@ -0,0 +1,34 @@
{
inputs,
pkgs,
...
}: let
desktop_entry = ''
[Desktop Entry]
Exec=${inputs.konawall-py.packages.${pkgs.system}.konawall-py}/bin/konawall
Icon=
Name=konawall
Path=
Terminal=False
Type=Application
'';
konawallConfig = {
interval = 30 * 60;
rotate = true;
source = "konachan";
tags = [
"rating:s"
"touhou"
"score:>=50"
"width:>=1500"
];
logging = {
file = "INFO";
console = "DEBUG";
};
};
in {
xdg.configFile = {
"konawall/config.toml".source = (pkgs.formats.toml {}).generate "konawall-config" konawallConfig;
};
}