modified: flake.nix

modified:   hosts/nixos/home.nix
This commit is contained in:
2025-07-22 13:59:42 +10:00
parent 5a60d574d8
commit 35f2c457dd
2 changed files with 19 additions and 27 deletions

View File

@@ -4,6 +4,7 @@
imports = [
../../common/aliases.nix
inputs.firefox-webapp.home-modules.firefox-webapp
];
home.username = "nixos"; # your actual username
@@ -33,5 +34,23 @@
# Optionally start in background directly
startInBackground = true;
};
programs.firefox.enable = true;
graphical.enable = true;
graphical.webapps = {
discord = {
url = "https://discord.com/app";
profile = "webapp_discord";
iconUrl = "https://discord.com/assets/icon.png";
name = "Discord Web";
windowClass = "DiscordWebApp";
};
telegram = {
url = "https://web.telegram.org";
profile = "webapp_telegram";
iconUrl = "https://telegram.org/img/t_logo.png";
name = "Telegram Web";
windowClass = "TelegramWebApp";
};
};
}