config.nix/modules/device/desktop.nix
2026-04-26 22:32:05 +02:00

19 lines
188 B
Nix

{
config,
lib,
pkgs,
...
}:
{
config = {
device.type = "desktop";
apps = {
internet = {
rss = {
enable = true;
};
};
};
};
}