Overlay a couple of packages #3

Merged
wymiller merged 4 commits from nix-override-overlay into master 2025-10-23 21:44:33 -05:00
4 changed files with 21 additions and 6 deletions
Showing only changes of commit 5ab19d093a - Show all commits

View File

@@ -28,7 +28,9 @@
extraSpecialArgs = {
inherit userName userEmail ghostty;
};
in {
meta = import ./meta;
# Primary laptop - MacBook Pro (2023, M3)

View File

@@ -1,6 +1,17 @@
{...}: {
{ pkgs, ... }: let
in {
programs.lazygit = {
enable = true;
package = pkgs.lazygit.overrideAttrs (oldAttrs: rec {
version = "0.55.1";
src = pkgs.fetchFromGitHub {
owner = "jesseduffield";
repo = "lazygit";
rev = "v${version}";
hash = pkgs.lib.fakeHash;
};
});
settings = {
gui.theme = {

View File

@@ -1,12 +1,9 @@
{
pkgs,
lib,
...
}: {
{ ... }: {
imports = [
./core.nix
./environment.nix
./fonts.nix
# ./overlays.nix
./users.nix
];
}

View File

@@ -0,0 +1,5 @@
{ pkgs, ... }: let
in {
}