modified: flake.nix

modified:   hosts/nixos/home.nix
This commit is contained in:
2025-07-22 14:15:15 +10:00
parent 0c2344098b
commit f4a849bbac
2 changed files with 4 additions and 44 deletions

View File

@@ -1,10 +1,9 @@
{ config, pkgs, lib, inputs, ... }:
{ config, pkgs, lib, ... }:
{
imports = [
../../common/aliases.nix
inputs.firefox-webapp.home-modules.firefox-webapp
];
home.username = "nixos"; # your actual username
@@ -35,22 +34,5 @@
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";
};
};
}