[Hyprland,Eww] Refactors configs so that I can share more between Vega and Altair

This commit is contained in:
2026-06-01 16:54:06 -07:00
parent e078067a5e
commit e936b9da8f
12 changed files with 274 additions and 124 deletions

View File

@@ -1,4 +1,9 @@
{ pkgs, inputs, ... }:
{
config,
pkgs,
inputs,
...
}:
let
zen-browser = inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default;
in
@@ -11,6 +16,7 @@ in
../apps/element.nix
../apps/discord.nix
./terminal.nix
../options/monitors.nix
];
home = {
@@ -59,7 +65,10 @@ in
programs = {
# browsers
firefox.enable = true;
firefox = {
enable = true;
configPath = "${config.xdg.configHome}/mozilla/firefox";
};
chromium.enable = true;
};