modified: flake.nix

This commit is contained in:
2025-07-22 13:31:05 +10:00
parent 66d8680b26
commit a4fc3d9b3b
+31
View File
@@ -8,6 +8,10 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
firefox-webapp = {
url = "github:TLATER/dotfiles";
# optional: specify a ref/branch if needed
};
};
outputs = { self, nixpkgs, nixos-conf-editor, home-manager, ... } @ inputs:
@@ -17,6 +21,33 @@
"github.com=***REMOVED***"
];
};
homeConfigurations = {
myUser = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
firefox-webapp.home-modules.firefox-webapp
];
configuration = { config, pkgs, ... }: {
programs.firefox.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";
};
};
};
};
};
nixosConfigurations = {
# automatically use each host folder by name
nixos = nixpkgs.lib.nixosSystem {