Skip to content

Commit

Permalink
feat(overlays): fixed pkgs overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
bddvlpr committed Jun 5, 2024
1 parent f2d8c91 commit 5b603b5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions modules/home/hyprland/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ in {
border_size = 2;
};

input = {
follow_mouse = 2;
};

dwindle = {
preserve_split = true;
};
Expand Down
5 changes: 5 additions & 0 deletions modules/home/stylix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ in {
name = "Geist";
};

monospace = {
package = pkgs.geist-mono-nerd-font;
name = "GeistMono NFM";
};

emoji = {
package = pkgs.twitter-color-emoji;
name = "Twitter Color Emoji";
Expand Down
8 changes: 7 additions & 1 deletion overlays/module.nix
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
{}
{
flake = {
overlays = {
pkgs = import ./pkgs;
};
};
}
1 change: 1 addition & 0 deletions overlays/pkgs/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
final: prev: (import ../../pkgs {pkgs = final;})
1 change: 1 addition & 0 deletions systems/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
mkPkgs = system:
import inputs.nixpkgs {
inherit system;
overlays = with outputs.overlays; [pkgs];
config.allowUnfree = true;
};

Expand Down

0 comments on commit 5b603b5

Please sign in to comment.