Skip to content

Commit

Permalink
flake.lock: update
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Dec 28, 2024
1 parent ba31af2 commit 455dc5a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion modules/darwin/system/interface/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ in
};
}
"${pkgs.vscode}/Applications/Visual Studio Code.app"
"${pkgs.bruno}/Applications/Bruno.app"
# FIXME: broken nixpkgs
# "${pkgs.bruno}/Applications/Bruno.app"
{
spacer = {
small = true;
Expand Down
3 changes: 2 additions & 1 deletion modules/home/programs/terminal/tools/git/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ in
programs = {
git = {
enable = true;
package = pkgs.gitFull;
# FIXME: broken nixpkgs
# package = pkgs.gitFull;
inherit (cfg) includes userName userEmail;
inherit (aliases) aliases;
inherit (ignores) ignores;
Expand Down
3 changes: 2 additions & 1 deletion modules/home/suites/development/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ in
# neovide
onefetch
postman
bruno
# FIXME: broken nixpkgs
# bruno
act
]
++ lib.optionals pkgs.stdenv.isLinux [
Expand Down
11 changes: 11 additions & 0 deletions overlays/kitty/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
_: _final: prev: {
kitty = prev.kitty.overrideAttrs (_oldAttrs: rec {
version = "0.38.1";
src = prev.fetchFromGitHub {
owner = "kovidgoyal";
repo = "kitty";
tag = "v${version}";
hash = "sha256-0M4Bvhh3j9vPedE/d+8zaiZdET4mXcrSNUgLllhaPJw=";
};
});
}

0 comments on commit 455dc5a

Please sign in to comment.