Add kicad
This commit is contained in:
parent
53ea7327bf
commit
02585b1f5e
5 changed files with 7 additions and 5 deletions
|
|
@ -58,11 +58,11 @@
|
|||
overlays = [
|
||||
# Combine stable and unstable packages
|
||||
(self: _: {
|
||||
stable = import nixpkgs {
|
||||
stable_pkgs = import nixpkgs {
|
||||
inherit config overlays;
|
||||
inherit (self) system;
|
||||
};
|
||||
unstable = import nixpkgs-u {
|
||||
unstable_pkgs = import nixpkgs-u {
|
||||
inherit config overlays;
|
||||
inherit (self) system;
|
||||
};
|
||||
|
|
@ -279,7 +279,7 @@
|
|||
modules = commonModules ++ [
|
||||
# ./baldur/hardware-configuration.nix
|
||||
./baldur/configuration.nix
|
||||
"${nixpkgs}/nixos/modules/virtualisation/digital-ocean-config.nix"
|
||||
"${nixpkgs}/nixos/modules/virtualisation/digital-ocean-config.nix"
|
||||
./nixos_modules/digitalocean.nix
|
||||
{ home-manager.users.bertof = import ./baldur/hm.nix; }
|
||||
];
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ in {
|
|||
];
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.helix;
|
||||
package = pkgs.unstable_pkgs.helix;
|
||||
languages = [ ];
|
||||
settings = {
|
||||
theme = "ayu_mirage";
|
||||
|
|
|
|||
1
hm_modules/kicad.nix
Normal file
1
hm_modules/kicad.nix
Normal file
|
|
@ -0,0 +1 @@
|
|||
{ pkgs, ... }: { home.packages = with pkgs; [ kicad ]; }
|
||||
|
|
@ -2,6 +2,6 @@
|
|||
home.packages = with pkgs;
|
||||
[
|
||||
# unstable.mendeley # Reference manager
|
||||
unstable.obsidian # Note manager
|
||||
unstable_pkgs.obsidian # Note manager
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -117,6 +117,7 @@
|
|||
../hm_modules/kakoune.nix
|
||||
../hm_modules/kdeconnect.nix
|
||||
# ../hm_modules/keepassxc.nix
|
||||
../hm_modules/kicad.nix
|
||||
../hm_modules/kitty.nix
|
||||
../hm_modules/lf.nix
|
||||
../hm_modules/libinput-gestures.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue