62c70dab19
The diff shows comprehensive code cleanup and formatting improvements across 18 files, including cleaner argument structures, additional package configurations, and improved formatting in the `home/terminal/software/git.nix` hook script.
9 lines
191 B
Nix
9 lines
191 B
Nix
{...}: {
|
|
# Overlay to add cisco-secure-client to pkgs
|
|
nixpkgs.overlays = [
|
|
(_self: super: {
|
|
cisco-secure-client = super.callPackage ./pkgs/cisco-secure-client {};
|
|
})
|
|
];
|
|
}
|