Skip to content

Commit

Permalink
add extraPkgs option for home manager conf; remove zoom client
Browse files Browse the repository at this point in the history
  • Loading branch information
gvolpe committed Mar 1, 2024
1 parent 6c9f297 commit f4cae33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion home/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ let
tree # display files in a tree view
vlc # media player
xsel # clipboard support (also for neovim)
zoom-us # message client

# haskell packages
haskellPackages.nix-tree # visualize nix dependencies
Expand Down
4 changes: 2 additions & 2 deletions lib/overlays.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ let
};

buildersOverlay = f: p: {
mkHomeConfigurations = { pkgs ? f }:
import ../outputs/home-conf.nix { inherit inputs pkgs system; };
mkHomeConfigurations = { pkgs ? f, extraPkgs ? [ ] }:
import ../outputs/home-conf.nix { inherit extraPkgs inputs pkgs system; };

mkNixosConfigurations = { pkgs ? f }:
import ../outputs/nixos-conf.nix { inherit inputs pkgs system; };
Expand Down
3 changes: 2 additions & 1 deletion outputs/home-conf.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ inputs, system, pkgs, ... }:
{ extraPkgs, inputs, system, pkgs, ... }:

with inputs;

let
imports = [
neovim-flake.nixosModules.${system}.hm
../home/home.nix
({ home.packages = extraPkgs; })
];

mkHome = { hidpi }: (
Expand Down

0 comments on commit f4cae33

Please sign in to comment.