24 lines
468 B
Nix
24 lines
468 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [kdePackages.falkon cage wlsunset];
|
|
|
|
services = {
|
|
cage = {
|
|
enable = true;
|
|
user = "don";
|
|
extraArguments = ["-d"];
|
|
program = "${pkgs.kdePackages.falkon}/bin/falkon --fullscreen http://harper2.home.duckland.org:8123/dashboard-pi/0";
|
|
};
|
|
wlsunset = {
|
|
enable = true;
|
|
latitude = 29.7;
|
|
longitude = -95.8;
|
|
};
|
|
};
|
|
}
|