Repaired login cmd in caelestia

This commit is contained in:
Tomas Rivera
2026-04-18 14:12:26 +02:00
parent 4ada4c9121
commit 99fe60b43c
5 changed files with 29 additions and 5 deletions
+24
View File
@@ -0,0 +1,24 @@
{
config,
pkgs,
...
}: {
home.file.".config/vivify/config.json" = {
enable = true;
text = ''
{
"browserOptions": {
"name": "qutebrowser",
"arguments": ["-T"]
}
}'';
};
programs.qutebrowser = {
enable = true;
settings = {
auto_save.session = false;
changelog_after_upgrade = "never";
content.cookies.accept = "never";
};
};
}