diff --git a/flake.nix b/flake.nix index 1a112377..1bfc0708 100644 --- a/flake.nix +++ b/flake.nix @@ -126,7 +126,14 @@ homeConfigurations = { "aly@petalburg" = self.inputs.home-manager.lib.homeManagerConfiguration { extraSpecialArgs = {inherit self;}; - pkgs = import self.inputs.nixpkgs {system = "x86_64-linux";}; + pkgs = import self.inputs.nixpkgs { + overlays = [ + self.inputs.nur.overlays.default + self.overlays.default + ]; + + system = "x86_64-linux"; + }; modules = [ self.homeManagerModules.aly-petalburg diff --git a/homes/aly/petalburg.nix b/homes/aly/petalburg.nix index 55ed3ca7..5081b31b 100644 --- a/homes/aly/petalburg.nix +++ b/homes/aly/petalburg.nix @@ -3,6 +3,10 @@ self: { pkgs, ... }: { + imports = [ + ./firefox + ]; + home = { homeDirectory = "/var/home/aly";