2: Added Textfox to flake.nix and enabled it

This commit is contained in:
uzy lol 2025-01-28 21:19:01 -08:00
parent 48c8e41d5e
commit 8c71f9377f
2 changed files with 12 additions and 0 deletions

View File

@ -50,6 +50,10 @@
walker = { walker = {
url = "github:abenz1267/walker"; url = "github:abenz1267/walker";
}; };
textfox = {
url = "github:adriankarlen/textfox";
};
}; };
outputs = { outputs = {
@ -63,6 +67,7 @@
nixvim, nixvim,
hyprland-qtutils, hyprland-qtutils,
walker, walker,
textfox,
... ...
} @ inputs: let } @ inputs: let
lib = nixpkgs.lib; lib = nixpkgs.lib;
@ -87,6 +92,7 @@
nixvim.homeManagerModules.nixvim nixvim.homeManagerModules.nixvim
walker.homeManagerModules.default walker.homeManagerModules.default
spicetify-nix.homeManagerModules.default spicetify-nix.homeManagerModules.default
textfox.homeManagerModules.default
]; ];
}; };
} }

View File

@ -3,4 +3,10 @@
firefox-bin firefox-bin
microsoft-edge microsoft-edge
]; ];
# Enable Textfox TUI-style theme for Firefox
textfox = {
enable = true;
profile = "uzair";
};
} }