added custom version of kicad with step compression turned off.
This commit is contained in:
parent
45c8062c0b
commit
b1d6810663
12 changed files with 269 additions and 87 deletions
|
|
@ -7,7 +7,7 @@
|
|||
programs.rofi = {
|
||||
enable = true;
|
||||
location = "top";
|
||||
terminal = "kitty";
|
||||
terminal = "ghostty";
|
||||
theme = "gruvbox-dark-soft";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
nickname = "toric";
|
||||
password-cmd = ["cat" config.sops.secrets.soju-password.path];
|
||||
colors = {
|
||||
nicks="extended";
|
||||
nicks = "extended";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
20
configs/nixos/kicad.nix
Normal file
20
configs/nixos/kicad.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
# nixpkgs.config = lib.mkIf (inputs ? nixpkgs-fork) {
|
||||
# kicad = {compressStep = false;};
|
||||
# };
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {kicad = inputs.nixpkgs-fork.legacyPackages.${prev.system}.kicad.override {compressStep = false;};})
|
||||
];
|
||||
home-manager.users.${config.host.details.user} = {config, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
kicad
|
||||
interactive-html-bom
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue