Skip to content

Commit

Permalink
🐛 Firefox
Browse files Browse the repository at this point in the history
It wouldn't start anymore otherwide :c
  • Loading branch information
elythh committed Feb 11, 2024
1 parent e1d9033 commit 4fed461
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@
pkgs = import nixpkgs {
inherit system;
};
pkgsStable = import nixpkgs-stable {
inherit system;
};
in
{
# NixOS configuration entrypoint
Expand All @@ -66,7 +69,7 @@
# FIXME replace with your username@hostname
"gwen@thinkpad" = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
extraSpecialArgs = { inherit inputs outputs; };
extraSpecialArgs = { inherit inputs pkgsStable outputs; };
modules = [
# > Our main home-manager configuration file <
./home/gwen/home.nix
Expand Down
3 changes: 2 additions & 1 deletion home/gwen/conf/utils/firefox/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{ nix-colors, config, pkgs, ... }:
{ nix-colors, config, pkgs, pkgsStable, ... }:
with config.colorscheme.palette;{
home.sessionVariables.BROWSER = "firefox";
programs.firefox = {
enable = true;
package = pkgsStable.firefox;
profiles = {
default = {
id = 0;
Expand Down
1 change: 1 addition & 0 deletions hosts/shared/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ in
dig
dosis
ffmpeg_5-full
#firefox
git
gnupg
grim
Expand Down

0 comments on commit 4fed461

Please sign in to comment.