Add kicad

This commit is contained in:
Filippo Berto 2023-02-14 11:00:26 +01:00
parent 53ea7327bf
commit 02585b1f5e
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
5 changed files with 7 additions and 5 deletions

View file

@ -58,11 +58,11 @@
overlays = [ overlays = [
# Combine stable and unstable packages # Combine stable and unstable packages
(self: _: { (self: _: {
stable = import nixpkgs { stable_pkgs = import nixpkgs {
inherit config overlays; inherit config overlays;
inherit (self) system; inherit (self) system;
}; };
unstable = import nixpkgs-u { unstable_pkgs = import nixpkgs-u {
inherit config overlays; inherit config overlays;
inherit (self) system; inherit (self) system;
}; };

View file

@ -39,7 +39,7 @@ in {
]; ];
programs.helix = { programs.helix = {
enable = true; enable = true;
package = pkgs.unstable.helix; package = pkgs.unstable_pkgs.helix;
languages = [ ]; languages = [ ];
settings = { settings = {
theme = "ayu_mirage"; theme = "ayu_mirage";

1
hm_modules/kicad.nix Normal file
View file

@ -0,0 +1 @@
{ pkgs, ... }: { home.packages = with pkgs; [ kicad ]; }

View file

@ -2,6 +2,6 @@
home.packages = with pkgs; home.packages = with pkgs;
[ [
# unstable.mendeley # Reference manager # unstable.mendeley # Reference manager
unstable.obsidian # Note manager unstable_pkgs.obsidian # Note manager
]; ];
} }

View file

@ -117,6 +117,7 @@
../hm_modules/kakoune.nix ../hm_modules/kakoune.nix
../hm_modules/kdeconnect.nix ../hm_modules/kdeconnect.nix
# ../hm_modules/keepassxc.nix # ../hm_modules/keepassxc.nix
../hm_modules/kicad.nix
../hm_modules/kitty.nix ../hm_modules/kitty.nix
../hm_modules/lf.nix ../hm_modules/lf.nix
../hm_modules/libinput-gestures.nix ../hm_modules/libinput-gestures.nix