19 lines
188 B
Nix
19 lines
188 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
config = {
|
|
device.type = "desktop";
|
|
apps = {
|
|
internet = {
|
|
rss = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|