feat: Move stuff into programs / apps in ryu

This commit is contained in:
2026-02-19 23:03:52 +05:30
parent f852a73d47
commit ab52b423ee
24 changed files with 122 additions and 70 deletions

View File

@@ -2,6 +2,7 @@
pkgs,
inputs,
device,
config,
...
}: {
imports = [
@@ -10,6 +11,25 @@
programs.zen-browser = {
enable = device.isLinux;
profiles.default = {
containersForce = true;
containers = {
Personal = {
color = "purple";
icon = "fingerprint";
id = 1;
};
Work = {
color = "blue";
icon = "briefcase";
id = 2;
};
Shopping = {
color = "yellow";
icon = "dollar";
id = 3;
};
};
spacesForce = true;
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
privacy-badger
violentmonkey
@@ -42,5 +62,6 @@
Fingerprinting = true;
};
};
suppressXdgMigrationWarning = true;
};
}