alpha
Login
or
Join now
pyrox.dev
/
nix-bak
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Backup of my flake repo in case my knot is down
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
[flake] use gitMinimal everywhere
author
dish
date
3 months ago
(Apr 27, 2026, 11:47 AM -0400)
commit
222fe47b
222fe47bcdfee06cec7fb9463d9a455da1c7a012
parent
6b137464
6b137464103e432344047adb8cf6021d655d7d51
+8
-3
5 changed files
Expand all
Collapse all
Unified
Split
homeModules
programs
git
default.nix
nixosModules
default-config
nixpkgsConfig.nix
packages.nix
overlays
default.nix
stl-gitmin
default.nix
+1
-1
homeModules/programs/git/default.nix
View file
Reviewed
···
20
20
programs = {
21
21
git = lib.mkIf cfg.enable {
22
22
enable = true;
23
23
-
package = pkgs.git;
23
23
+
package = pkgs.gitMinimal;
24
24
settings = {
25
25
branch.sort = "-committerdate";
26
26
column.ui = "auto";
+1
nixosModules/default-config/nixpkgsConfig.nix
View file
Reviewed
···
6
6
nixpkgs = {
7
7
overlays = [
8
8
inputs.self.overlays.openssh-fixperms
9
9
+
inputs.self.overlays.stl-gitmin
9
10
inputs.agenix.overlays.default
10
11
inputs.glide.overlays.default
11
12
inputs.golink.overlays.default
-2
nixosModules/default-config/packages.nix
View file
Reviewed
···
5
5
doggo
6
6
fzf
7
7
ghostty.terminfo
8
8
-
lazygit
9
8
nix-output-monitor
10
9
pciutils
11
11
-
git
12
10
ripgrep
13
11
tailscale
14
12
unrar
+1
overlays/default.nix
View file
Reviewed
···
2
2
flake.overlays = {
3
3
cinny = import ./cinny;
4
4
openssh-fixperms = import ./openssh-fixperms;
5
5
+
stl-gitmin = import ./stl-gitmin;
5
6
};
6
7
}
+5
overlays/stl-gitmin/default.nix
View file
Reviewed
···
1
1
+
_final: prev: {
2
2
+
steamtinkerlaunch = prev.steamtinkerlaunch.override {
3
3
+
git = prev.gitMinimal;
4
4
+
};
5
5
+
}